小编典典

Android:从通知栏中删除通知

all

我创建了一个应用程序,并通过一个事件设法在 android 通知栏中添加通知。现在我需要示例如何从事件的通知栏中删除该通知?


阅读 64

收藏
2022-07-29

共1个答案

小编典典

这很简单。您必须致电cancelcancelAll在您的 NotificationManager 上。cancel 方法的参数是应该取消的通知的
ID。

请参阅 API: http:
//developer.android.com/reference/android/app/NotificationManager.html#cancel(int)

2022-07-29