Android如何给通知channel静音

Posted QIANDXX

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android如何给通知channel静音相关的知识,希望对你有一定的参考价值。

目前各个市场都要求targetsdkversion要不低于26,也就是android 8.0。 相应的影响很多功能,比如通知。

当targetsdkversion >= 26,需要为通知添加channel,如

manager = (NotificationManager) BaseApp.getAppContext()
        .getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) 
    NotificationChannel channel = new NotificationChannel("update", "update", NotificationManager.IMPORTANCE_DEFAULT);
    manager.createNotificationChannel(channel);

builder = new NotificationCompat.Builder(BaseApp.getAppContext(), "update"); 

首先要新建一个NotificationChannel,并调用NotificationManager的createNotificationChannel启用该通道。

然后在创建buidler的时候设置同样的channelid即可。

静音

那么如果想让通知静音怎么处理?

  • 可以在channel上设置,setSound(null, null)。注意如果已经安装且这个channel已经存在,再覆盖安装不能生效,需要卸载重装。
  • 也可以对builder进行设置,setOnlyAlertOnce(true)。注意这个并不是完全静音,而是让这个通知只响一次,比如显示下载进度时,就不会一直响。
manager = (NotificationManager) BaseApp.getAppContext()
        .getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) 
    NotificationChannel channel = new NotificationChannel("update", "update", NotificationManager.IMPORTANCE_DEFAULT);
    channel.setSound(null, null);
    manager.createNotificationChannel(channel);

builder = new NotificationCompat.Builder(BaseApp.getAppContext(), "update");
...
builder.setOnlyAlertOnce(true); 

以上是关于Android如何给通知channel静音的主要内容,如果未能解决你的问题,请参考以下文章

Android如何给通知channel静音

如何静音推送通知?

忽略手机静音模式

如何使本地 APNS 推送通知静音?

iOS 13 和静音通知

静音模式下的 UILocalNotification 声音