NotificationManager的多次通知



当前我通知用户为-

mNotificationManager.notify("My App Name",1212,notification);

这运行得很好。但它在状态栏中只显示一个图标,尽管我在不同的时间发送了多个通知。

我想为每个通知显示图标(即3个图标)。

我不确定这是否可能。有线索吗?

试试这个:

mNotificationManager.notify("My App Name",(int)(Math.random() * 101),notification);

*通知更改时相同的id总是最后一个

*不同的id创建一个新的通知

根据notify文档,如果您希望始终使用相同的3个通知,请尝试使用唯一标记。标签和id的组合使通知"覆盖"了前一个通知。

mNotificationManager.notify("My App Name 1",1212,notification);
mNotificationManager.notify("My App Name 2",1212,notification);
mNotificationManager.notify("My App Name 3",1212,notification);

mNotificationManager.notify("My App Name",1212,notification);
mNotificationManager.notify("My App Name",1213,notification);
mNotificationManager.notify("My App Name",1214,notification);

相关内容

  • 没有找到相关文章

最新更新