我已经为组摘要创建了一个通知,其中可能包含许多通知。
这些通知由addAction()
添加了一些操作。
我在尝试完成后尝试取消通知:
NotitifactionCompat.from(context).cancel(notificationId);
不幸的是,当取消的通知是摘要的最后一个时,只会取消通知本身,但也不会取消摘要。
我错过了什么?
setAutoCancel(true)
到摘要通知解决了我在托盘中留下摘要通知的问题。
有同样的问题。点击通知操作时,我以编程方式取消通知。如果你把它滑出来就行得很好。我做这个解决方法:
public static void cancelNotification(Context context, int notifyId, int summeryId) {
NotificationManager notificationManager = (NotificationManager) context
.getSystemService(Context.NOTIFICATION_SERVICE);
boolean cancelSummary = false;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N && summeryId != 0) {
StatusBarNotification[] statusBarNotifications = notificationManager.getActiveNotifications();
String groupKey = null;
for (StatusBarNotification statusBarNotification : statusBarNotifications) {
if (notifyId == statusBarNotification.getId()) {
groupKey = statusBarNotification.getGroupKey();
break;
}
}
int counter = 0;
for (StatusBarNotification statusBarNotification : statusBarNotifications) {
if (statusBarNotification.getGroupKey().equals(groupKey)) {
counter++;
}
}
if (counter == 2) {
cancelSummary = true;
}
}
if (cancelSummary) {
notificationManager.cancel(summeryId);
} else {
notificationManager.cancel(notifyId);
}
}
以编程方式取消所有分组通知时,不会自动取消摘要通知。来自Correctly handling bundled Android notifications:
显然,您需要跟踪新通知。但这也意味着您必须跟踪已被解雇的通知。否则,摘要可能仍包含有关捆绑包中不再包含的通知的信息。