Slide 34
Slide 34 text
Notification Groups
val summaryNotification = NotificationCompat.Builder(context, "news")
...
.setGroupSummary(true)
.setGroup("myGroup")
.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY)
.build()
val childNotification = NotificationCompat.Builder(context, "news")
...
.setGroupSummary(false)
.setGroup("myGroup")
.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY)
.build()