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);
これを行う方法?