web-dev-qa-db-fra.com

Uri à la notification sonore par défaut?

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?

118
StefMa

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);
252
ρяσѕρєя K

builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI) fonctionne également

45
Fortega

Les deux options pour utiliser le Default Notification Sound sont les suivantes:

mBuilder.setDefaults(Notification.DEFAULT_SOUND);

ou en utilisant RingtoneManager Class: 

mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
25
Elenasys

Vous pouvez aussi utiliser ceci: 

Uri uri = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
            getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
3
Leebeedev

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());
2
sssvrock

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.

0
Jevgenij Kononov