summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-08-17 21:06:41 +0200
committerArne Schwabe <arne@rfc2549.org>2012-08-17 21:06:41 +0200
commitb262ae76e2efd519046cf1d1d5ada26170bb11b0 (patch)
tree32c3d172a61e6cdde2554290c7e79bbb96437912
parenteed0b325a50fea16c71919c9893445b33929ab75 (diff)
hide notification on JB+
-rw-r--r--src/de/blinkt/openvpn/OpenVpnService.java32
1 files changed, 25 insertions, 7 deletions
diff --git a/src/de/blinkt/openvpn/OpenVpnService.java b/src/de/blinkt/openvpn/OpenVpnService.java
index 8bde0048..bac9ca95 100644
--- a/src/de/blinkt/openvpn/OpenVpnService.java
+++ b/src/de/blinkt/openvpn/OpenVpnService.java
@@ -17,6 +17,8 @@
package de.blinkt.openvpn;
import java.io.IOException;
+import java.lang.reflect.InvocationTargetException;
+import java.lang.reflect.Method;
import java.util.Vector;
import android.app.Notification;
@@ -81,7 +83,7 @@ public class OpenVpnService extends VpnService implements StateListener {
}
}
- private Notification showNotification(String msg, String tickerText) {
+ private Notification showNotification(String msg, String tickerText, boolean lowpriority) {
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
@@ -97,14 +99,30 @@ public class OpenVpnService extends VpnService implements StateListener {
nbuilder.setOngoing(true);
nbuilder.setContentIntent(getLogPendingIntent());
nbuilder.setSmallIcon(icon);
- nbuilder.setWhen(when);
+ // Try to set the priority available since API 16 (Jellybean)
+ if(lowpriority) {
+ try {
+ Method setpriority = nbuilder.getClass().getMethod("setPriority", int.class);
+ // PRIORITY_MIN == -2
+ setpriority.invoke(nbuilder, -2 );
+
+ //ignore exception
+ } catch (NoSuchMethodException nsm) {
+ } catch (IllegalArgumentException e) {
+ } catch (IllegalAccessException e) {
+ } catch (InvocationTargetException e) {
+ }
+ }
if(tickerText!=null)
nbuilder.setTicker(tickerText);
Notification notification = nbuilder.getNotification();
+
+
+
mNotificationManager.notify(OPENVPN_STATUS, notification);
startForeground(OPENVPN_STATUS, notification);
return notification;
@@ -170,7 +188,7 @@ public class OpenVpnService extends VpnService implements StateListener {
String profileUUID = intent.getStringExtra(prefix + ".profileUUID");
mProfile = ProfileManager.get(profileUUID);
- showNotification("Starting VPN " + mProfile.mName,null);
+ showNotification("Starting VPN " + mProfile.mName,"Starting VPN " + mProfile.mName, false);
OpenVPN.addSpeedListener(this);
@@ -195,8 +213,8 @@ public class OpenVpnService extends VpnService implements StateListener {
}
// An old running VPN should now be exited
mStarting=false;
-
-
+
+
// Open the Management Interface
LocalServerSocket mgmtsocket = openManagmentInterface(8);
@@ -413,14 +431,14 @@ public class OpenVpnService extends VpnService implements StateListener {
mDisplayBytecount = true;
} else if("BYTECOUNT".equals(state)) {
if(mDisplayBytecount) {
- showNotification(logmessage,null);
+ showNotification(logmessage,null,true);
}
} else {
// Other notifications are shown,
// This also mean we are no longer connected, ignore bytecount messages until next
// CONNECTED
String ticker = state.toLowerCase();
- showNotification(state +" " + logmessage,ticker);
+ showNotification(state +" " + logmessage,ticker,false);
mDisplayBytecount=false;
}
}