Я использую Notification.Builder для создания уведомления. Теперь я хочу использовать звуковое уведомление по умолчанию с:
builder.setSound(Uri sound)
Но где Uri для уведомления по умолчанию?
Я использую Notification.Builder для создания уведомления. Теперь я хочу использовать звуковое уведомление по умолчанию с:
builder.setSound(Uri sound)
Но где Uri для уведомления по умолчанию?
Ответы:
попробуйте использовать RingtoneManager, чтобы получить Uri уведомления по умолчанию как:
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
Settings.System.DEFAULT_NOTIFICATION_URI
Default Notification Sound
Есть два варианта использования :mBuilder.setDefaults(Notification.DEFAULT_SOUND);
или используя класс RingtoneManager :
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
все эти методы работают
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);
mBuilder.setDefaults(Notification.DEFAULT_SOUND);
Вы также можете использовать это:
Uri uri = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
application
канал звук не по умолчанию звуковой системы пыталась с NotificationChannel channel = new NotificationChannel(ApplicationClass.getInstance().HighNotificationChannelID, getString(R.string.incoming_sms), NotificationManager.IMPORTANCE_HIGH); channel.getSound();
возвращениями , default system sound
пожалуйста , помогите
Для системного уведомления по умолчанию
Uri uri = RingtoneManager.getDefaultUri (RingtoneManager.TYPE_NOTIFICATION);
Для настраиваемого уведомления
Uri customSoundUri = Uri.parse ("android.resource: //" + getPackageName () + "/" + R.raw.twirl);
Источник звука уведомления (переименовал в "twirl" и поместил в папку res-> raw)
https://notificationsounds.com/message-tones/twirl-470
Конструктор уведомлений:
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notificaion_icon)
.setContentTitle("Title here")
.setContentText("Body here")
.setSound(defaultSoundUri)
.setAutoCancel(true);
NotificationManager mNotifyMgr =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
mNotifyMgr.notify(id, mBuilder.build());
Если кому-то еще нужно, то со звуком и вибрацией работает абсолютно нормально.
Context context = getApplicationContext();
long[] vibrate = new long[] { 1000, 1000, 1000, 1000, 1000 };
Intent notificationIntent = new Intent(context, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context,
0, notificationIntent,
PendingIntent.FLAG_CANCEL_CURRENT);
Resources res = context.getResources();
Notification.Builder builder = new Notification.Builder(context);
builder.setContentIntent(contentIntent)
.setSmallIcon(R.drawable.notif)
.setTicker("lastWarning")
.setWhen(System.currentTimeMillis())
.setAutoCancel(true)
.setVibrate(vibrate)
//.setContentTitle(res.getString(R.string.notifytitle))
.setContentTitle("Notification")
.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
//.setContentText(res.getString(R.string.notifytext))
.setContentText("Notification text");
// Notification notification = builder.getNotification(); // until API 16
Notification notification = builder.build();
NotificationManager notificationManager = (NotificationManager) context
.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(NOTIFY_ID, notification);
Если вы хотите отключить, например, вибрацию, измените вибрацию на новую длинную [] {0,0,0,0,0}; Почти то же самое вы можете сделать со звуком или с помощью оператора if else.