作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 NotificationCompat.Builder 设置为:
.setSound(getNotificationSound(), AudioManager.STREAM_ALARM)
.setCategory(NotificationCompat.CATEGORY_ALARM)
.setPriority(NotificationCompat.PRIORITY_MAX)
在其他强制属性中。
对于我正在使用的 NotificationChannel,我添加了:
.setBypassDnd(true)
对于奥利奥来说,问题在于:
通知类别/ channel 中的请勿打扰自定义异常切换按钮有什么意义?它是否有助于实现我的目标,因为我没有看到任何差异?
对于早于 Oreo 的版本,在我不使用 NotificationChannel 的情况下,我有一个我更喜欢的行为:
有什么办法可以解决这种不一致的问题吗?
最佳答案
最后我放弃了使用声音和振动的通知 channel 来获得跨 Android 版本的一致结果。
channel.setSound(null, null);
并使用 MediaPlayer
和 Vibrator
代替辅助类,如下所示:
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();
}
}
}
我看到的唯一缺点是用户可以手动更改将与上述 channel 一起播放的通知 channel 的声音和振动设置。就我而言,在应用程序设置中对声音和振动有明确的偏好是不鼓励的。
关于android - NotificationChannel 通知作为电话静音时的警报(奥利奥),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50785055/
所以我在 jQuery 可排序方面遇到了奇怪的问题。我有可排序的 li 元素,排序很好,但是在 IE 中,拖动时图像会消失。我相当确定它们的位置很奇怪,但在任何其他浏览器中似乎都不会发生这种情况,其他
我是一名优秀的程序员,十分优秀!