La notificación con setGroupSummary (true) no está visible en Android N
Intenté mostrar 3 notificaciones en formato de clúster. Según el documento, agregué la propiedad setGroupSummary (true) para la primera notificación, pero en el resultado solo obtuve dos notificaciones. La notificación a la que se agrega la propiedad GroupSummary no es visible.
NotificationCompat.Builder firstNotification = createNotification(context,"1.Message","Here you go 1");
firstNotification .setGroupSummary(true);
firstNotification .setGroup("KEY_NOTIFICATION_GROUP");
NotificationCompat.Builder secondNotifi = createNotification(context,"2.Message","Here you go 2");
secondNotifi .setGroup("KEY_NOTIFICATION_GROUP");
NotificationCompat.Builder thirdNotifi= createNotification(context,"3.Message","Here you go 3");
thirdNotifi.setGroup("KEY_NOTIFICATION_GROUP");
Aquí el disparador de notificación,
notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0,firstNotification .build());
notificationManager.notify(1,secondNotifi .build());
notificationManager.notify(2,thirdNotifi.build());
Quiero mostrar las tres notificaciones en el formato de clúster sin faltar.
Cualquier ayuda será muy apreciada.