当我在android device
中测试我的应用程序并关闭它时,我可以在通知区域显示它。你能告诉我怎样才能以编程方式从中删除它?
由于 NIK
答案 0 :(得分:1)
您必须在NotificationManager
上致电取消。 cancel方法的参数是应该取消的通知的ID。 This是带有cancel方法的API。
<强>更新强>
例如:
// Creates a notification
private static final int MY_NOTIFICATION_ID= 1234;
NotificationManager mNotificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(MY_NOTIFICATION_ID, notification);
// Removes the notification from the notification bar
mNotificationManager.cancel(MY_NOTIFICATION_ID);
答案 1 :(得分:0)
//通知管理员
_mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//在登录按钮中清除通知单击
_mNotificationManager.cancel(notication_ID);