Android在一个通知中显示多条消息

时间:2016-07-29 11:44:59

标签: android

目前,我收到服务器的通知。会发生什么,如果我收到通知,我很长时间都不会看到它。当有新通知出现时,我会丢失之前的通知。我想要一个包含多条消息的单一通知 -

enter image description here

1 个答案:

答案 0 :(得分:3)

是InboxStyle通知

Notification notif = new Notification.Builder(mContext)
 .setContentTitle("5 New mails from " + sender.toString())
 .setContentText(subject)
 .setSmallIcon(R.drawable.new_mail)
 .setLargeIcon(aBitmap)
 .setStyle(new Notification.InboxStyle()
     .addLine(str1)
     .addLine(str2)
     .setContentTitle("")
     .setSummaryText("+3 more"))
 .build();

Here是官方文件

也请查看此示例 - Inbox Style Notification Like Whatsapp