我的申请中有很多通知。通过每个通知,我都在调用 myProject 的主要活动。
现在我的应用程序中有多个通知,例如 aNotification、BNotification。. .
我知道如何取消该通知。
IE:
NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.cancel(NotificationConstants.NOTIFICATION_ID_EVERY_MONTH);
但是如果有多个通知那么如何处理呢?
谢谢。