如何清除Android的通知 [英] How to clear a notification in Android

查看:86
本文介绍了如何清除Android的通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能清除通知编程?

Is it possible to clear a notification programatically?

我试图用 NotificationManager ,但它不工作。 有没有其他方法可以让我做到这一点?

I tried it with the NotificationManager but its not working. Is there any other way I can do it?

推荐答案

使用下面的code取消通知:

Use the following code to cancel a Notification:

NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.cancel(NOTIFICATION_ID);

在此code有常是用于通知的相同的ID。如果您有需要取消不同的通知,你必须保存您用来创建通知的ID。

In this code there is alway the same id used for notifications. If you have different notifications that need to be canceled you have to save the ids that you used to create the Notification.

这篇关于如何清除Android的通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆