Each icon corresponds to one notification; You cannot associate multiple notifications with one instance of an item in the notification panel.
You can, however, overlay a number on top of your icon (for example, show the number of events that are displayed by the icon), as some SMS and email applications do.
This is accomplished using the instance variable number for Notification , as shown in the code snippet above.
Edit:
To be more clear: if you need several notifications, you need to create several Notification objects and call NotificationManager.notify() several times.
Each Notification can only create one icon, can have one piece of content inside the notification area, and can have one Intent associated with it.
Christopher orr
source share