Varsayılan sesli bildirim için Uri?


123

Bir bildirim oluşturmak için Notification.Builder'ı kullanıyorum . Şimdi varsayılan ses bildirimini şununla kullanmak istiyorum:

builder.setSound(Uri sound)

Ancak varsayılan bildirime giden URI nerede?

Yanıtlar:


267

Varsayılan Bildirim URI'sini şu şekilde almak için RingtoneManager'ı kullanmayı deneyin :

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

builder.setSound(uri);

50
Teşekkürler. Ama setDefaults (Notification.DEFAULT_SOUND) 'u da kullanabileceğimi gördüm ;-)
StefMa

8
bunu da geçebilirsinSettings.System.DEFAULT_NOTIFICATION_URI
Pratik Butani

46

builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI) aynı zamanda çalışır


5
Ayarlar, android.provider.Settings içe aktarımından gelir;
Chris Knight

29

Kullanmak için iki seçenek Default Notification Soundşunlardır:

mBuilder.setDefaults(Notification.DEFAULT_SOUND);

veya RingtoneManager Class kullanarak :

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

12

tüm bu yöntemler işe yarıyor

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

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

  3. mBuilder.setDefaults(Notification.DEFAULT_SOUND);

Google Belgeleri


3

Bunu da kullanabilirsiniz:

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

Geri dönüşlerle applicationNotificationChannel channel = new NotificationChannel(ApplicationClass.getInstance().HighNotificationChannelID, getString(R.string.incoming_sms), NotificationManager.IMPORTANCE_HIGH); channel.getSound();default system sound
Sagar

3

Sistem varsayılan bildirimi için

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

Özel bildirim için

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

Bildirim sesinin kaynağı ("burgu" olarak yeniden adlandırdım ve res-> raw klasörüne yerleştirdim)

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

Bildirim oluşturucu:

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

Birisinin hala ihtiyacı varsa, bu ses ve titreşimle kesinlikle iyi çalışır.

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

Örneğin, titreşimi devre dışı bırakmak isterseniz, titreşim değiştir yeni uzun [] {0,0,0,0,0}; Neredeyse benzer bir şey sesle yapabilir veya başka bir ifadeyle kullanabilirsiniz.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.