Я создал уведомление с помощью
NotificationCompat.InboxStyle
и добавил текст, используя
inboxStyle.addLine
для нескольких текстовых сообщений.Но я, когда я добавил
Notification.BigTextStyle
в уведомление, BigTextStyle
не работает из-за уведомления уже setStyle
.
Мое уведомление:
Notification summaryNotification = new
NotificationCompat.Builder(this, notificationChannelId)
.setContentTitle("title")
.setStyle(addInboxStyle())
.setStyle(addBigTextStyle())
.setGroupSummary(true)
.setContentIntent(pendingIntent)
.setChannelId(notificationChannelId)
.build();