Is it possible to make an icon on android that when clicked clears all notifications, e.g. SMS, email, missed calls etc? I just want an icon on my home screen that clears all notifications. What coding would I use?
Asked
Active
Viewed 944 times
1
-
Thanks but from what I understand, that only applies if your own app had created a notification, then that would work. – toiletduckie44 Aug 30 '12 at 12:40
-
Duplicate of [link](http://stackoverflow.com/questions/2665634/how-to-clear-a-notification-in-android) – arshad kr Aug 30 '12 at 12:42
-
@arshadkr No, not same here the question is to clear all the notification even it is not raised by you app. – Daud Arfin Aug 30 '12 at 12:57
2 Answers
3
cancel(notificationID)
where you pass the notification id of the notification you have created
or else, you can clear all your notifications by cancelAll()
.
*NOTE : * Only notifications created by your application can be deleted. You cannot remove notifications created by some other application.

Swayam
- 16,294
- 14
- 64
- 102
0
You can only remove a Notification
that you raise yourself. You cannot remove a Notification
raised by another application.

Daud Arfin
- 2,499
- 1
- 18
- 37