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?
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:
Versuchen Sie, RingtoneManager zu verwenden, um die Standardbenachrichtigungs-Uri wie folgt abzurufen:
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
Settings.System.DEFAULT_NOTIFICATION_URI
builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
funktioniert auch
Default Notification Sound
sind:mBuilder.setDefaults(Notification.DEFAULT_SOUND);
oder mit RingtoneManager- Klasse:
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
Alle diese Methoden funktionieren
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);
mBuilder.setDefaults(Notification.DEFAULT_SOUND);
Sie können dies auch verwenden:
Uri uri = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
application
Kanal 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 sound
bitte helfen
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());
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.