How to show a notification without a sound java

后端 未结 11 1718
鱼传尺愫
鱼传尺愫 2020-12-11 15:09

How can I make a notification that doesn\'t make a sound when I build it? I am building a notification, and my users don\'t like the fact that it makes a sound.

11条回答
  •  星月不相逢
    2020-12-11 15:38

    In android O, for me it worked with this settings in the notification:

                    .setGroupAlertBehavior(GROUP_ALERT_SUMMARY)
                    .setGroup("My group")
                    .setGroupSummary(false)
                    .setDefaults(NotificationCompat.DEFAULT_ALL)
    

提交回复
热议问题