Android避免显示通知

时间:2011-10-16 04:12:35

标签: android filter notifications

我正在尝试开发一款应用,避免在通知面板中显示其他应用通知。这可能吗?检测某个应用正在“创建”通知而不显示该通知。

由于

1 个答案:

答案 0 :(得分:3)

通知开发人员需要为其应用程序传递唯一ID。

public void notify(int id,Notification notification)

参数

id此应用程序中唯一的标识符。

取消时,您需要传递该ID以取消通知。 甚至cancelAll();只会取消该应用程序的先前通知。 因此,无法从Stock Android中删除其他应用通知。