我想为 Android Oreo 创建通知频道,其中默认声音 无声,我试图不指定声音,并在发送通知时仍然播放声音。有什么想法吗?
NotificationChannel chan2 = new NotificationChannel(SECONDARY_CHANNEL,
getString(R.string.noti_channel_second),
NotificationManager.IMPORTANCE_HIGH);
chan2.setLightColor(Color.BLUE);
chan2.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
getManager().createNotificationChannel(chan2);
答案 0 :(得分:2)
在创建频道时添加build.gradle
。