Yo uso el Notification.Builder para construir una notificación. Ahora quiero usar la notificación de sonido predeterminada con:
builder.setSound(Uri sound)
Pero, ¿dónde está el Uri para la notificación predeterminada?
Yo uso el Notification.Builder para construir una notificación. Ahora quiero usar la notificación de sonido predeterminada con:
builder.setSound(Uri sound)
Pero, ¿dónde está el Uri para la notificación predeterminada?
Respuestas:
intente usar RingtoneManager para obtener Uri de notificación predeterminada como:
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
Settings.System.DEFAULT_NOTIFICATION_URI
builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
funciona bien
Default Notification Sound
son:mBuilder.setDefaults(Notification.DEFAULT_SOUND);
o usando la clase RingtoneManager :
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
todos estos métodos funcionan
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);
mBuilder.setDefaults(Notification.DEFAULT_SOUND);
También puedes usar esto:
Uri uri = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
application
sonido del canal, no el sonido predeterminado del sistema probado con NotificationChannel channel = new NotificationChannel(ApplicationClass.getInstance().HighNotificationChannelID, getString(R.string.incoming_sms), NotificationManager.IMPORTANCE_HIGH); channel.getSound();
devoluciones, default system sound
por favor ayuda
Para notificaciones predeterminadas del sistema
Uri uri = RingtoneManager.getDefaultUri (RingtoneManager.TYPE_NOTIFICATION);
Para notificaciones personalizadas
Uri customSoundUri = Uri.parse ("android.resource: //" + getPackageName () + "/" + R.raw.twirl);
Fuente del sonido de notificación (cambié el nombre a "giro" y lo coloqué en res-> carpeta sin formato)
https://notificationsounds.com/message-tones/twirl-470
Generador de notificaciones:
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());
Si alguien aún lo necesita, esto funciona absolutamente bien con sonido y vibración.
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);
Si desea deshabilitar, por ejemplo, la vibración, cambie la vibración a nueva larga [] {0,0,0,0,0}; Algo casi similar que puede hacer con el sonido o usar si otra declaración.