【发布时间】:2017-10-09 19:32:05
【问题描述】:
更新:我通过设置解决了它
.setGroupAlertBehavior(GROUP_ALERT_SUMMARY)
我正在创建类似
的通知new NotificationCompat.Builder(context, channel_id)
.setColor(..)
.setContentTitle(..)
.setSubText(..)
.setSmallIcon(..)
.setAutoCancel(true)
.setGroup(groupKey)
.setGroupSummary(true)
.setContentIntent(resultPendingIntent)
.build();
在 8.0 上,某些设备会在每次通知时看到双重通知声音。 There is a blog post around this
某些应用似乎找到了解决问题的方法?救命!
【问题讨论】:
-
你找到解决办法了吗
标签: android notifications android-8.0-oreo