I have 1 summary-notification and serveral stacked notifications. For some reason the stacked notifications are not only shown on the Andrid Wear device but also on the phone. According to the documentation Stacking Notifications they should only display on the watch. NotificationBuilder.setGroup is, of cause, set to the same value and only the summary has .setSummary(true).
Details: http://marcuswolschon.blogspot.de/2015/05/implementing-k9-mail-wear-support.html
Replace NotificationManager with NotificationManagerCompat
Use NotificationManager
private void send() {
Notification notification1 =
new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("News1")
.setGroup("News")
.setContentText("Text")
.build();
Notification notification2 =
new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("News2")
.setGroup("News")
.setContentText("Text2")
.build();
NotificationManager notificationManager = (NotificationManager)
getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(1 , notification1);
notificationManager.notify(2 , notification2);
Notification Summary = new NotificationCompat.Builder(this)
.setContentTitle("2 new News")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentText("Text2")
.setGroup("News")
.setGroupSummary(true)
.build();
notificationManager.notify(-1 , Summary);
}
Use NotificationManagerCompat
private void send() {
Notification notification1 =
new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("News1")
.setGroup("News")
.setContentText("Text")
.build();
Notification notification2 =
new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("News2")
.setGroup("News")
.setContentText("Text2")
.build();
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
notificationManager.notify(1 , notification1);
notificationManager.notify(2 , notification2);
Notification Summary = new NotificationCompat.Builder(this)
.setContentTitle("2 new News")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentText("Text2")
.setGroup("News")
.setGroupSummary(true)
.build();
notificationManager.notify(-1 , Summary);
}