phone 静音时的 NotificationChannel 通知作为警报 (Oreo)

NotificationChannel notification as alarm when phone is muted (Oreo)

我将 NotificationCompat.Builder 设置为:

.setSound(getNotificationSound(), AudioManager.STREAM_ALARM)
.setCategory(NotificationCompat.CATEGORY_ALARM)
.setPriority(NotificationCompat.PRIORITY_MAX)

在其他强制属性中。

对于我正在使用的 NotificationChannel,我添加了:

.setBypassDnd(true)

对于奥利奥来说,问题在于:

通知 category/channel 中的 请勿打扰自定义异常 切换按钮有什么意义?它是否有助于实现我的目标,因为我没有看到任何差异?

对于早于 Oreo 的版本,在我不使用 NotificationChannel 的情况下,我有一个我更喜欢的行为:

有什么办法可以解决这种不一致的问题吗?

最后我放弃了使用声音和振动的通知渠道来在 Android 个版本中获得一致的结果。

channel.setSound(null, null);

并使用 MediaPlayerVibrator 代替助手 class,如下所示:

public class RingtoneAndVibrationPlayer extends ContextWrapper{

private MediaPlayer mMediaPlayer;
private Vibrator mVibrator;

public RingtoneAndVibrationPlayer(Context context) {
    super(context);
}

public void play() {
    try {
        mMediaPlayer = new MediaPlayer();
        mVibrator = (Vibrator) this.getSystemService(VIBRATOR_SERVICE);

        final Uri uri = Uri.parse(PreferenceHelper.getNotificationSound();

        mMediaPlayer.setDataSource(this, uri);
        if (PreferenceHelper.isRingtoneEnabled()) {
            mMediaPlayer.setAudioStreamType(AudioManager.STREAM_ALARM);
            mMediaPlayer.setLooping(PreferenceHelper.isRingtoneInsistent());
            mMediaPlayer.prepareAsync();
        }

        mMediaPlayer.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
            @Override
            public void onPrepared(MediaPlayer mp) {
                mMediaPlayer.start();
            }
        });

        if (PreferenceHelper.isVibrationEnabled()) {
            mVibrator.vibrate(new long[] {0, 500, 500, 500},
                    PreferenceHelper.isRingtoneInsistent() ? 2 : -1);
        }
    } catch (SecurityException | IOException e) {
        stop();
    }
}

public void stop() {
    if (mMediaPlayer != null && mVibrator != null) {
        mMediaPlayer.reset();
        mMediaPlayer.release();
        mMediaPlayer = null;
    }
    if (mVibrator != null) {
        mVibrator.cancel();
    }
}
}

我看到的唯一缺点是用户可以手动更改将与上述频道一起播放的通知频道的声音和振动设置。 就我而言,在应用程序设置中对声音和振动有明确的偏好是不鼓励的。