【发布时间】:2017-09-16 12:42:58
【问题描述】:
我想为 Android Oreo 创建一个通知通道,其中 默认声音 是 silent,我尝试不指定声音并且在发送通知时它仍然会播放声音。有什么想法吗?
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);
【问题讨论】:
标签: android android-appcompat android-8.0-oreo notification-channel