Uri auf Standard-Soundbenachrichtigung?


123

Ich verwende den Notification.Builder , um eine Benachrichtigung zu erstellen. Jetzt möchte ich die Standard-Soundbenachrichtigung verwenden mit:

builder.setSound(Uri sound)

Aber wo ist der Uri zur Standardbenachrichtigung?

Antworten:


267

Versuchen Sie, RingtoneManager zu verwenden, um die Standardbenachrichtigungs-Uri wie folgt abzurufen:

Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

builder.setSound(uri);

50
Vielen Dank. Aber ich habe gesehen, dass ich auch setDefaults (Notification.DEFAULT_SOUND) verwenden kann ;-)
StefMa

8
Sie können dieses auch bestehenSettings.System.DEFAULT_NOTIFICATION_URI
Pratik Butani

46

builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI) funktioniert auch


5
Die Einstellungen stammen aus dem Import android.provider.Settings;
Chris Knight

29

Die zwei Optionen zur Verwendung Default Notification Soundsind:

mBuilder.setDefaults(Notification.DEFAULT_SOUND);

oder mit RingtoneManager- Klasse:

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

12

Alle diese Methoden funktionieren

  1. mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));

  2. mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);

  3. mBuilder.setDefaults(Notification.DEFAULT_SOUND);

Google-Dokumentation


3

Sie können dies auch verwenden:

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

Ich möchte applicationKanal Sound nicht Standard System Sound mit NotificationChannel channel = new NotificationChannel(ApplicationClass.getInstance().HighNotificationChannelID, getString(R.string.incoming_sms), NotificationManager.IMPORTANCE_HIGH); channel.getSound();Retouren versucht bekommen, default system soundbitte helfen
Sagar

3

Für die Systemstandardbenachrichtigung

Uri uri = RingtoneManager.getDefaultUri (RingtoneManager.TYPE_NOTIFICATION);

Für benutzerdefinierte Benachrichtigungen

Uri customSoundUri = Uri.parse ("android.resource: //" + getPackageName () + "/" + R.raw.twirl);

Quelle des Benachrichtigungstons (Ich habe in "twirl" umbenannt und in den Ordner res-> raw gelegt)

https://notificationsounds.com/message-tones/twirl-470

Benachrichtigungs-Builder:

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

0

Wenn jemand noch braucht, funktioniert dies absolut gut mit Klang und Vibration.

        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);

Wenn Sie zum Beispiel die Vibrationsänderung deaktivieren möchten, vibrieren Sie zu new long [] {0,0,0,0,0}; Fast ähnlich können Sie mit Sound oder if else-Anweisung arbeiten.

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.