如何在按钮点击中清除通知

时间:2012-04-16 08:46:10

标签: android

在我的项目中,我有通知选项   我可以在按钮点击中删除此通知吗?   我可以在使用代码

点击此通知时取消通知
    checkin_notification.flags = Notification.FLAG_AUTO_CANCEL;

但我在我的应用程序中我希望在显示后清除通知。它应该是一个按钮点击。

提前致谢。

2 个答案:

答案 0 :(得分:20)

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

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

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

notificationManager.cancel(notification_id);

答案 1 :(得分:5)

按钮上的

单击“只写”....

mNotificationManager.cancel(SIMPLE_NOTFICATION_ID);

您可以在此处查看http://saigeethamn.blogspot.in/2009/09/android-developer-tutorial-for.html并查看....

并清除所有...... mNotificationManager.cancelAll();