即使我没有设置声音,Android Oreo通知也会继续发出声音。在旧版本,完美的工作

时间:2017-09-15 07:41:05

标签: android android-8.0-oreo

所以我正在使我的应用程序与Oreo兼容并面临通知问题。

我根据文档添加了通知频道,一切顺利,除了通知在每个帖子上发出声音,尝试将默认值设置为0。

我正在模拟器中测试我的应用程序,非常感谢任何帮助。

使用此代码创建频道

  NotificationCompat.Builder builder = new NotificationCompat.Builder(PlayerService.this, "channel_01")
                            .setAutoCancel(false)
                            .setContentIntent(pendingIntent)
                            .setContent(viewsSmall)
                            .setCustomBigContentView(viewsExpanded)
                            .setDeleteIntent(pSwipeToDismiss);

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                builder.setVisibility(Notification.VISIBILITY_PUBLIC);
            }

            if (Build.VERSION.SDK_INT > Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) {
                builder.setPriority(Notification.PRIORITY_MAX);
            }


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

                    startForeground(Constants.NOTIFICATION_ID.FOREGROUND_SERVICE,notification);

4 个答案:

答案 0 :(得分:34)

查看通知频道设置(滑动通知并按下其下方的设置图标,然后选择您的频道)。这些设置是在您第一次创建频道时设置的,除非您在设备中手动执行此操作,否则不会进行修改(至少这是我从卸载和重新安装应用程序以查看默认设置的经验)。

基本上,channel.setSound(null, null) 只有在全新安装上创建频道时才会生效。这可能是他们试图在official guide中解释的:

  

尝试使用其原始值创建现有通知通道不执行任何操作

如果您尝试按照该指南设置NotificationManager.IMPORTANCE_HIGH并且未使用channel.setSound(null, null),则频道会以默认声音获得重要级别Urgent Make sound and pop on screen

答案 1 :(得分:7)

^ Benjamin的答案有效,但他缺少一些重要的细节!每次调整代码时,都必须更改频道ID,否则Oreo不会进行更改。不知道为什么。

下面的我的代码,您可以在<-------这里

看到必须在何处进行修改
 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

        String channelID = "My Channel I";  <-------here
        String appName = mContext.getResources().getString(R.string.app_name);


        NotificationCompat.Builder notificationCompatBuilder = new NotificationCompat.Builder(mContext );
        notificationCompatBuilder
                .setOngoing(true)
                .setContentTitle(mContext.getResources().getString(R.string.app_name))
                .setContentText(mContext.getString(R.string.clocked_in))
                .setSmallIcon(R.drawable.ic_action_name)
                .setChannelId(channelID)
                .setSound(null);

        NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);

        NotificationChannel notificationChannel = new NotificationChannel(channelID, appName, NotificationManager.IMPORTANCE_LOW);
        notificationChannel.setSound(null, null);
        notificationManager.createNotificationChannel(notificationChannel);
        notificationManager.notify(ONGOINGNOTIFICATION_ID, notificationCompatBuilder.build());

    }

答案 2 :(得分:6)

用此

替换您的代码
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");
    }

答案 3 :(得分:3)

我的场景是第一次发出声音,更新通知不需要声音。

我使用这个setOnlyAlertOnce()方法

参考:https://developer.android.com/training/notify-user/build-notification#Updating

测试通过第26版