在我的项目中,我有通知选项。
我可以通过单击按钮删除此通知吗?使用代码单击此通知时,我可以取消通知
checkin_notification.flags = Notification.FLAG_AUTO_CANCEL;
但我在我的应用程序中我想在显示通知后清除它。它应该在按钮单击中。
提前致谢。
在我的项目中,我有通知选项。
我可以通过单击按钮删除此通知吗?使用代码单击此通知时,我可以取消通知
checkin_notification.flags = Notification.FLAG_AUTO_CANCEL;
但我在我的应用程序中我想在显示通知后清除它。它应该在按钮单击中。
提前致谢。
要clear all
通知您的应用程序,您可以这样做,
NotificationManager notificationManager = (NotificationManager)
getSystemService(Context.
NOTIFICATION_SERVICE);
notificationManager.cancelAll();
要清除particular
通知,您可以这样做,
notificationManager.cancel(notification_id);
onButton 点击只写....
mNotificationManager.cancel(SIMPLE_NOTFICATION_ID);
你可以在这里看到http://saigeethamn.blogspot.in/2009/09/android-developer-tutorial-for.html并检查它....
为了清楚起见......mNotificationManager.cancelAll();