Android Oreo notification keep making Sound even if I do not set sound. On Older version, works perfectly

后端 未结 4 550
天涯浪人
天涯浪人 2020-12-15 04:41

So I am making my app compatible with Oreo and facing issue with notification.

I added notification channel according to documentation and everything is working smoo

4条回答
  •  眼角桃花
    2020-12-15 05:28

    Replace your code with this

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                    /* Create or update. */
            NotificationChannel channel = new NotificationChannel("channel_01",
                    "Playback Notification",
                    NotificationManager.IMPORTANCE_LOW);
            channel.setSound(null, null);
            mNotificationManager.createNotificationChannel(channel);
            mBuilder.setChannelId("channel_01");
        }
    

提交回复
热议问题