来自Android中的文档NotificationManager
:
public void notify (int id, Notification notification) 发布要在状态栏中显示的通知。如果您的应用程序已经发布了具有相同 id 的通知并且尚未取消,它将被更新的信息替换。
it will be replaced by the updated information.
我不想替换旧信息,我想要两个通知。注意:每个通知都有自己的 id:
notificationManager.notify(0, notification);
notificationManager.notify(1, notification);
这该怎么做?