我已为群组摘要创建了一个通知,其中可能包含许多通知
这些通知由addAction()
添加了一些操作。
我尝试在执行操作后取消通知:
NotitifactionCompat.from(context).cancel(notificationId);
不幸的是,当取消的通知是摘要的最后一个时,只会取消通知本身,但也不会取消摘要。
我缺少什么?
答案 0 :(得分:2)
setAutoCancel(true)
到摘要通知中,解决了我的摘要通知留在纸盘中的问题。
答案 1 :(得分:1)
当以编程方式取消所有分组通知时,不会自动取消摘要通知。来自 Correctly handling bundled Android notifications :
显然,您需要跟踪新通知。但这也意味着您必须跟踪已被解雇的通知。否则,摘要可能仍包含有关捆绑包中不再包含的通知的信息。
答案 2 :(得分:1)
有同样的问题。当我点击通知操作时,会以编程方式取消通知。如果将其滑出,效果很好。我可以通过以下方法解决此问题:
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);
}
}