Se como hacerlo sin programación pero obviamente es texto plano y no está haciendo caso a los mensajes que vienen desde parse.
Código Java:
Ver original
// Create an InboxStyle notification Notification summaryNotification = new NotificationCompat.Builder(ctx) .setContentTitle("Titulo") .setContentText("5 Mensajes") .setSmallIcon(R.drawable.ic_launcher) .setStyle(new NotificationCompat.InboxStyle() .addLine("Alex Faaborg Check this out") .addLine("Jeff Chang Launch Party") .setBigContentTitle("2 new messages") ) .setContentIntent(viewPendingIntent) .setAutoCancel(true) .setGroup("grupo_de_mensajes") .setGroupSummary(true) .build();