如何计算android&中的状态栏通知消息当我的活动停止时如何删除状态消息?

时间:2012-08-30 12:21:32

标签: android

我想知道如何计算android&中的状态栏通知消息当我的活动停止时如何删除状态消息?任何代码段都将不胜感激

2 个答案:

答案 0 :(得分:1)

删除活动onDestory功能的通知。

答案 1 :(得分:1)

关闭应用程序时需要清除它。这意味着,有一个onDestroy电话。

如果您的通知类似于:

private static final int MY_NOTIFICATION_ID= 1234;
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager;
mNotificationManager = (NotificationManager) getSystemService(ns);
mNotificationManager.notify(MY_NOTIFICATION_ID, notification);

然后你需要实现以下内容来关闭它:

protected void onDestroy() {
   super.onDestroy();
   mNotificationManager.cancel(MY_NOTIFICATION_ID);
};

我从以下帖子中获取了这些信息:

Remove the notification icon from the status bar

http://developer.android.com/reference/android/app/Activity.html