很多通知,但只有一个声音

时间:2013-09-03 11:35:29

标签: android notifications android-notifications notify

在我的应用程序上,我显示了很多通知。 如果用户关闭设备一小时,打开时,会收到很多通知。 有一种方法只能使用一次声音,而不是每次通知一次?

1 个答案:

答案 0 :(得分:0)

使用FLAG_ONLY_ALERT_ONCE:

Notification notification = notificationBuilder.build();
notification.flags = Notification.FLAG_ONLY_ALERT_ONCE;
notificationManager.notify(notificationId, notification);