禁用 Android 的持续通知更新的声音

Disabling sound on Android's Ongoing notification updating

我有一个 Ongoing 通知显示日期并在服务内每分钟更新一次。但在 android 8 中,它会在每次更新时播放声音,用户会感到困惑。

我这样设置:

builder.setPriority(NotificationCompat.PRIORITY_LOW);

这禁用了声音但有副作用。更新日期也不起作用!我想在没有任何声音的情况下更新通知。怎么可能?

在您的通知频道中尝试将声音设置为无。像这样:

channel.setSound(null, null);