0

In my application I have to display notification form a background service when given condition reaches.

Example:

while(i<=50)
{

if(i%2==0)
{
notifyUser();
}
}

notifyUser() method contains code for simple notification

My question is how to get all the notifications when the condition reaches what i am getting is the last notification of the loopHow to achieve notifications witout being overridden just like facebook notificationHelp me

4

1 回答 1

1

为每个通知使用不同的 ID。

于 2013-06-18T11:15:45.323 回答