3

My app might have multiple notifications for different events and instead of showing 4 notifications, I want to combine them like GMail does. How do I do this? Is this possible in API 14 or was this added in JellyBean?

Don Rhummy
  • 24,730
  • 42
  • 175
  • 330

1 Answers1

3

The large notification you're thinking of (specifically InboxStyle) was added in Jelly Bean, but there's nothing stopping you from aggregating multiple pieces of information in a single notification on earlier versions of Android (you just won't be able to fit as much in). Use NotificationCompat to create a Notification that has a nice bigContentView for JB+ devices and a more concise summary version on older devices.

dsandler
  • 2,471
  • 17
  • 11