9

在我的项目中,我有通知选项。
我可以通过单击按钮删除此通知吗?使用代码单击此通知时,我可以取消通知

    checkin_notification.flags = Notification.FLAG_AUTO_CANCEL;

但我在我的应用程序中我想在显示通知后清除它。它应该在按钮单击中。

提前致谢。

4

2 回答 2

23

clear all通知您的应用程序,您可以这样做,

NotificationManager notificationManager = (NotificationManager) 
                                 getSystemService(Context.
                                                        NOTIFICATION_SERVICE);
notificationManager.cancelAll();

要清除particular通知,您可以这样做,

notificationManager.cancel(notification_id);
于 2012-04-16T08:49:56.553 回答
5

onButton 点击​​只写....

mNotificationManager.cancel(SIMPLE_NOTFICATION_ID);

你可以在这里看到http://saigeethamn.blogspot.in/2009/09/android-developer-tutorial-for.html并检查它....

为了清楚起见......mNotificationManager.cancelAll();

于 2012-04-16T08:48:57.020 回答