Reputation: 1891
Current state: If the user receives multiple push messages for the same app, then each message will have one entry. See the screenshot attached for an example with many push messages.
Expected: Check if there is a way to combine the messages for the same app. The app name should be shown once and below the Text for each push message. Each push should be clickable so that the user will end up on the correct item data
Can anyone please help me to resolve?
Upvotes: 2
Views: 1725
Reputation: 835
I think Notification.InboxStyle
should help.
Check it out. Here is the document: http://developer.android.com/reference/android/app/Notification.InboxStyle.html
Upvotes: 1
Reputation: 51
Collapsing your notification into one notification normally means you lose the ability to click each individual notification. What you could do is add an action for each added notification. This way the expanded view would list all your individual notifications preserving the ability to click all of them individually.
It's not something users will be used to though.
Upvotes: 1