Disable sound from NotificationChannel

前端 未结 15 1307
时光说笑
时光说笑 2020-11-27 15:50

Today I started targeting API 26 which forced me to use Notification Channels.

My problem is that now on each new notification (including updates to it) an annoying

15条回答
  •  [愿得一人]
    2020-11-27 16:27

    First you need to set

    importance = NotificationManager.IMPORTANCE_LOW;
    

    then

    Notification n = builder.setPriority(Notification.DEFAULT_ALL).build();
    n.defaults = 0;
    n.defaults |= Notification.DEFAULT_VIBRATE;
    

提交回复
热议问题