私のアプリケーションでは、特定の条件に達したときにバックグラウンド サービスから通知を表示する必要があります。
例:
while(i<=50)
{
if(i%2==0)
{
notifyUser();
}
}
notifyUser() メソッドcontains code for simple notification
私の質問は、ループの最後の通知である条件に達したときにすべての通知を取得する方法How to achieve notifications witout being overridden just like facebook notification
です