如何清除Android中的通知

是否可以通过程序清除通知?

我尝试了,NotificationManager但无法正常工作。我还有其他方法可以做到吗?


慕勒3428872
浏览 1533回答 3
3回答

千巷猫影

使用以下代码取消通知:NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);notificationManager.cancel(NOTIFICATION_ID);在此代码中

MYYA

由于没有人对此发布代码答案:notification.flags = Notification.FLAG_AUTO_CANCEL;..并且如果您已经有标志,则可以像这样执行FLAG_AUTO_CANCEL:notification.flags = Notification.FLAG_INSISTENT | Notification.FLAG_AUTO_CANCEL;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android