3

对于 API 26 (Android 8.0),我们需要为每个通知定义一个NotificationChannel。每个通道都有自己的干扰设置(例如振动、灯光、声音)。

问题: 当我禁用此频道的振动并将其部署在 Android 8.0(2017 年 9 月安全更新)手机(Nexus 5X)上时,通知无论如何都会触发振动并自动打开(弹出式),我没有设置但想要禁用。

  1. 我在 MainActivity 中注册了一个 NotificationChannel:

    // Register NotificationChannels needed for API 26+ to display notification messages
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel runningChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID_RUNNING,
                getString(R.string.notification_channel_name_running), NotificationManager.IMPORTANCE_LOW);
        runningChannel.enableLights(false);
        runningChannel.enableVibration(false);
        mNotificationManager.createNotificationChannel(runningChannel);
    }
    
  2. 我为通知设置了 NotificationChannel:

    notification = new NotificationCompat.Builder(context)
                .setContentIntent(onClickPendingIntent)
                .setChannelId(NOTIFICATION_CHANNEL_ID_RUNNING)
                .setOngoing(true)
                .setWhen(System.currentTimeMillis())
                .setAutoCancel(false)
                .build();
    

更新(2017 年 10 月 5 日安全更新)

现在一切都按预期工作,没有变通方法,所以我可以选择 targetSDK 26(之前,我使用 25 来避免这种错误行为)。对于其他版本有类似错误的其他手机尚未收到最新更新的情况,我将以下解决方法标记为已接受答案。

4

1 回答 1

3

这似乎有效:

runningchannel.setVibrationPattern(new long[]{0, 0, 0, 0,0, 0, 0, 0, 0});

是的,这很奇怪

于 2017-10-04T12:04:40.467 回答