猿问
如何清除Android中的通知
是否可以通过程序清除通知?
我尝试了,
NotificationManager
但无法正常工作。我还有其他方法可以做到吗?
慕勒3428872
浏览 1533
回答 3
3回答
千巷猫影
使用以下代码取消通知:NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);notificationManager.cancel(NOTIFICATION_ID);在此代码中
0
0
0
MYYA
由于没有人对此发布代码答案:notification.flags = Notification.FLAG_AUTO_CANCEL;..并且如果您已经有标志,则可以像这样执行FLAG_AUTO_CANCEL:notification.flags = Notification.FLAG_INSISTENT | Notification.FLAG_AUTO_CANCEL;
0
0
0
随时随地看视频
慕课网APP
相关分类
Android
我要回答