J'utilise Notification.Builder pour créer une notification . Je souhaite maintenant utiliser la notification sonore par défaut avec:
builder.setSound(Uri sound)
Mais où est l'URI à la notification par défaut?
essayez d’utiliser RingtoneManager pour obtenir l’Uri de notification par défaut en tant que:
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
fonctionne également
Default Notification Sound
sont les suivantes:mBuilder.setDefaults(Notification.DEFAULT_SOUND);
ou en utilisant RingtoneManager Class:
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
Vous pouvez aussi utiliser ceci:
Uri uri = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
Pour notification par défaut du système
Uri uri = RingtoneManager.getDefaultUri (RingtoneManager.TYPE_NOTIFICATION);
Pour notification personnalisée
Uri customSoundUri = Uri.parse ("Android.resource: //" + getPackageName () + "/" + R.raw.twirl);
Source du son de notification (j'ai renommé "Twirl" et placé dans le dossier Res-> raw)
https://notificationsounds.com/message-tones/twirl-470
Constructeur de notification:
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 quelqu'un a encore besoin d'aide, cela fonctionne parfaitement avec le son et les vibrations.
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 vous souhaitez désactiver, par exemple, le changement de vibration, faites-le vibrer en un nouveau long [] {0,0,0,0,0}; Ce que vous pouvez faire avec le son ou utiliser la commande if else.