Reputation: 73753
I have an activity that fires a notification is it possible to cancel that notification from a different activity?
is that was the notification id is for?
Upvotes: 0
Views: 122
Reputation: 4784
You use the NotificationManager and the ID to clear a notification. You can find some more details here:
http://developer.android.com/reference/android/app/NotificationManager.html
Upvotes: 1