dahvlh
2018-06-07 14:33:36 +08:00
还有一个是屏蔽通知栏弹出“ wifi 无网络的通知”(实际有网络
状态是 741 的话直接返回,不在进行之后的通知操作
+++ b/base/services/core/java/com/android/server/connectivity/NetworkNotificationManager.java
@@ -147,6 +147,12 @@ public class NetworkNotificationManager {
highPriority));
}
public void showNotification(int id, NotificationType notifyType, NetworkAgentInfo nai,
NetworkAgentInfo switchToNai, PendingIntent intent, boolean highPriority) {
..........
略
.....
+ //tinno start VBCNIRA-54 wei.tang 20170915
+ if (eventId == 741) {
+ return;
+ }
+ //tinno end VBCNIRA-54 wei.tang 20170915
+
Resources r = Resources.getSystem();
CharSequence title;
CharSequence details;