Добрый день,
У меня есть следующий код в моем проекте, чтобы делать уведомления, поэтому уведомления работают нормально, но пользовательский звук, который я хочу добавить в поддержку Android 8, не работает ... это простоиспользует звук уведомления телефона.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
Uri mysound = null;
if(sound.equalsIgnoreCase("visitor_long"))
{
mysound = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + File.pathSeparator + File.separator + getPackageName()+ "/res" + "/raw/" + sound + ".wav");
}
else{
mysound = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + this.getPackageName() + "/raw/" + sound);
}
AudioAttributes attributes = new AudioAttributes.Builder().setUsage(AudioAttributes.USAGE_NOTIFICATION).build();
NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, contentTitle, NotificationManager.IMPORTANCE_HIGH);
// Configure the notification channel.
mChannel.setDescription(message);
mChannel.enableLights(true);
mChannel.enableVibration(true);
mChannel.setSound(mysound, attributes); // This is IMPORTANT
if (notificationManager != null)
notificationManager.createNotificationChannel(mChannel);
}
if(notificationManager != null ) {
if(message != null) {
int messageHash = message.hashCode();
notificationManager.notify(messageHash, notificationBuilder.build());
}
}
Я использовал следующие ссылки, но он просто не работает:
ПОЛУЧИТЕ ПОЛЬЗОВАТЕЛЬСКОЕ УВЕДОМЛЕНИЕ ДЛЯ OREO
ПОЛУЧИТЬ URI ИЗ RAW ФАЙЛА