NotificationManager.cancel(id) is not working inside a broadcast receiver

别说谁变了你拦得住时间么 提交于 2019-11-29 02:02:14

In my experience, you can't cancel all notifications with a particular ID, regardless of tag.

That is, if you create two notifications like so:

notificationManager.notify(TAG_ONE, SAME_ID, notification_one);
notificationManager.notify(TAG_TWO, SAME_ID, notification_two);

Then, notificationManager.cancel(SAME_ID) won't cancel either of them! I suspect that this is because the "tag" field, if unspecified in notify() and cancel(), defaults to null, which you have to cancel explicitly.

So, to cancel these two notifications, you have to call:

notificationManager.cancel(TAG_ONE, SAME_ID);
notificationManager.cancel(TAG_TWO, SAME_ID);

In your case, you're supplying "TEXT" as the tag but cancelling just using the id, which defaults to using tag=null.

So, either don't provide TEXT as your tag:

_completeNotificationManager.notify(id, notification);

Or, if you need separate notifications and don't want them to clobber each other, keep track of the active tags:

_completeNotificationManager.notify(TEXT, id, notification);
collectionOfActiveTags.add(TEXT);

...

for (String activeTag : collectionOfActiveTags)    
    notificationhelper._completeNotificationManager.cancel(activeTag, id);

I wish that what you're trying to do was supported, as it seems that it should be.

Well this is probably irrelevant at this point, but it should be posted here so that people like me dealing with the same problem might find the solution.

If NotificationManager.cancel() isn't working, try changing the ID for the notification.

notificationManager.notify(NOTIFICATION_ID, notification);

When I changed NOTIFICATION_ID from 1 to [RANDOM_NUMBER], it magically started working. I assume that 1 is somehow reserved, although there is no note in any documentation...

An of course make sure you use the same NOTIFICATION_ID to cancel:

notificationManager.cancel(NOTIFICATION_ID);

My notifications were not getting removed because my service was Foreground Service and NOT a regular service started by StartService.

If your service is foreground, call stopForeground(true) instead of stopself(). So now my code looks like this:

NotificationManagerCompat.from(this).cancel(NotificationHelper.PLAYER_NOTIFICATION_ID);
stopForeground(true);

and it worked, notification was removed.

I was facing the same issue recently. I have managed to solve it.

So from what i understood.

1) use the id which is basically a random number to notify and send this same id to the piece of code(reciever/activity...) where you want to cancel it.

2) When using tags, it seems to not work for me as i was giving one tag to all notifications but with unique id.It worked only on the first tag. so i completely avoided using tags. If you want to use tags, issue unique tags along with unique id and use them both while cancelling.

So final answer... what i used and what works for me:

STEP 1:
int notif_id = (int)(System.currentTimeMillis()%10000);

STEP2: add this id inside the action intent (I am launching an activity where the notification gets cancelled on the action click):

                Intent notificationSettingsIntent = new Intent(context.getApplicationContext(), NotificationSettingsActivity.class);
                notificationSettingsIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
                notificationSettingsIntent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
                notificationSettingsIntent.putExtra("fromNotification",true);
                notificationSettingsIntent.putExtra("notif_id",notif_id);
                PendingIntent notificationSettingsActivityPendingIntent = PendingIntent.getActivity(context,notif_id,notificationSettingsIntent,PendingIntent.FLAG_ONE_SHOT);

STEP 3: notify using the id in the step 1 but with no tags

NotificationManagerCompat notificationCompat = NotificationManagerCompat.from(context.getApplicationContext());

notificationCompat.notify(notif_id,notificationBuilder.build());

Now in the Activity which gets opened by my action click, i cancel the notification as:

NotificationManagerCompat notificationCompat = NotificationManagerCompat.from(context.getApplicationContext());

notificationCompat.cancel(getIntent().getIntExtra("notif_id"));

Works every time now.

Following worked for me:

final NotificationManagerCompat mNotificationManager = NotificationManagerCompat.from(context.getApplicationContext());
mNotificationManager.cancel(<Notificatoin-id>);

Sorry for late joining! But following worked fine for me.

NotificationManagerCompat mNotificationManager = NotificationManagerCompat.from(context.getApplicationContext());
mNotificationManager.cancel("<TAG>",<Notificatoin-id>);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!