toiletduckie44
toiletduckie44

Reputation: 23

How do I clear all notifications with separate app?

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?

Upvotes: 1

Views: 955

Answers (2)

Swayam
Swayam

Reputation: 16364

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.

Upvotes: 3

Daud Arfin
Daud Arfin

Reputation: 2499

You can only remove a Notification that you raise yourself. You cannot remove a Notification raised by another application.

Upvotes: 0

Related Questions