Disable sound from NotificationChannel

前端 未结 15 1317
时光说笑
时光说笑 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:23

    I faced the same issue in the 8.1 and made the below changes. Change the priority of the notification as LOW and it will disable the sound of notification.

    NotificationManager.IMPORTANCE_LOW

    The code is like following:

    NotificationChannel chan1 = new NotificationChannel("default", "default", NotificationManager.IMPORTANCE_LOW);
    

提交回复
热议问题