Android应用程序可以有多少通知?

时间:2014-05-21 12:13:55

标签: java android push-notification push

我原以为任何Android应用只能有一个活动通知。

但我现在在documentation中读到:

You call cancelAll(), which removes all of the notifications you previously issued.

意味着可以同时存在多个通知?

1 个答案:

答案 0 :(得分:0)

在我看来,是的。但, 您需要为每个通知添加唯一ID,以便它们不会相互组合。

 private static final int NOTIFICATION_ID =1;
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
        manager.notify(NOTIFICATION_ID, builder.build());