我创建了一个应用程序,并通过一个事件设法在 android 通知栏中添加通知。现在我需要示例如何从事件的通知栏中删除该通知?
这很简单。您必须致电cancel或cancelAll在您的 NotificationManager 上。cancel 方法的参数是应该取消的通知的 ID。
cancel
cancelAll
请参阅 API: http: //developer.android.com/reference/android/app/NotificationManager.html#cancel(int)