从通知中删除应用

时间:2011-07-30 04:37:43

标签: android

当我在android device中测试我的应用程序并关闭它时,我可以在通知区域显示它。你能告诉我怎样才能以编程方式从中删除它?

由于 NIK

2 个答案:

答案 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);