我有一个现有的应用程序,即使设备的铃声音量静音,使用Alarm
音频流也能产生声音通知声音(假设闹钟音量为非-零)。这在Android 7.1.2上运行良好
将设备升级到Oreo (8.0.0)后,除非响铃音量非零,否则通知不再听见。 应用未发生变化。
所以我尝试解决这个问题就是重新编译Oreo(SDK 26)API并包含新的NotificationChannel
内容,看看它是否有帮助,但它没有。
请注意,此代码是在Service
内执行的。
以下是代码摘录:
int importance = NotificationManager.IMPORTANCE_MAX;
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
NotificationChannel mChannel = new NotificationChannel("channel1", "Alarms", importance);
mChannel.setDescription("Alarms that alert you immediately");
mChannel.enableLights(true);
mChannel.enableVibration(true);
mChannel.setSound(defaultSoundUri,
new AudioAttributes.Builder()
.setUsage(AudioAttributes.USAGE_ALARM)
.setFlags(AudioAttributes.FLAG_AUDIBILITY_ENFORCED)
.setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
.build()
);
notificationManager.createNotificationChannel(mChannel);
Notification.Builder notificationBuilder = new Notification.Builder(this,"channel1")
.setSmallIcon(R.drawable.ic_stat_ic_notification)
.setContentTitle("Alarm Message")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri, new AudioAttributes.Builder()
.setUsage(AudioAttributes.USAGE_ALARM)
.setFlags(AudioAttributes.FLAG_AUDIBILITY_ENFORCED)
.setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
.build())
.setContentIntent(pendingIntent)
.setCategory(Notification.CATEGORY_ALARM)
.setPriority(Notification.PRIORITY_MAX);
Notification n = notificationBuilder.build();
n.flags = n.flags | Notification.FLAG_INSISTENT;
notificationManager.notify(0 /* ID of notification */, n);
有什么想法吗?
答案 0 :(得分:0)
我也在努力解决这个问题。我还没有发现为什么会这样,但我使用MediaPlayer
解决了这个问题。我删除了声音添加到通知中的部分,并将其替换为:
Uri ringtoneUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
final MediaPlayer mediaPlayer = new MediaPlayer();
mediaPlayer.setDataSource(this.getApplicationContext(), ringtoneUri);
mediaPlayer.setAudioAttributes(new AudioAttributes.Builder().setLegacyStreamType(AudioManager.STREAM_ALARM).build());
mediaPlayer.setLooping(false);
mediaPlayer.setOnCompletionListener(new OnCompletionListener() {
public final void onCompletion(MediaPlayer it) {
mediaPlayer.stop();
mediaPlayer.release();
}
});
mediaPlayer.setOnPreparedListener(new OnPreparedListener() {
public final void onPrepared(MediaPlayer it) {
mediaPlayer.start();
}
});
mediaPlayer.prepareAsync();
答案 1 :(得分:0)
我遇到了类似的问题,但它出现在Android 7.1.1上
我的解决方案是删除以下行
.setFlags(AudioAttributes.FLAG_AUDIBILITY_ENFORCED)
我已经搜索了解释为什么删除此标志有效,但我没有找到FLAG_AUDIBILITY_ENFORCED所做的任何信息,除了开发人员文档中的描述,说
定义一种行为的标志,系统将确保声音的可听性。