Remove notification from notification bar from other applications

后端 未结 3 678
太阳男子
太阳男子 2020-12-09 09:37

I want to remove notifications from another application shown in the notification bar. Is that possible? NotificationManager.cancelAll(); cancels only notificat

3条回答
  •  轮回少年
    2020-12-09 10:11

    From Android 4.3 onward, you can now cancel notifications from any apps.

    You need to register your app as NotificationListenerService, then call NotificationListenerService.cancelNotification(String pkg, String tag, int id) to cancel one notification.

提交回复
热议问题