0

i want to remove all notifications from notification drawer not only my apps notification but all notification of other apps. NotificationListenerService can do this but is there any other way to simply remove notifications?

Ali Asjad
  • 253
  • 1
  • 4
  • 11

2 Answers2

0

Try to use cancel(); or cancelAll();

Check out

gprathour
  • 14,813
  • 5
  • 66
  • 90
CBJul
  • 31
  • 4
  • but this will remove notifications of my own app not all notifications of other apps also? – Ali Asjad Jun 19 '17 at 13:35
  • It's only for YOUR APP Notification. Read https://stackoverflow.com/questions/11661023/clear-another-apps-notification-via-the-accessibility-api (with accesibility android) – CBJul Jun 22 '17 at 19:16
0

try this it worked for me

NotificationManager.cancelAll() to remove all notification.
Jafar Sadiq SH
  • 715
  • 9
  • 22