在我的应用程序上,我显示了很多通知。 如果用户关闭设备一小时,打开时,会收到很多通知。 有一种方法只能使用一次声音,而不是每次通知一次?
答案 0 :(得分:0)
使用FLAG_ONLY_ALERT_ONCE:
Notification notification = notificationBuilder.build();
notification.flags = Notification.FLAG_ONLY_ALERT_ONCE;
notificationManager.notify(notificationId, notification);