Notification.Builder を使用して通知を作成します。ここで、デフォルトのサウンド通知を次のもので使用したいと思います。
builder.setSound(Uri sound)
しかし、デフォルト通知のUriはどこにありますか?
RingtoneManager を使用して、デフォルト通知Uriを次のように取得してみてください。
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
も機能します
Default Notification Sound
を使用する2つのオプションは次のとおりです。mBuilder.setDefaults(Notification.DEFAULT_SOUND);
または RingtoneManager クラスを使用:
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
これらのメソッドはすべて動作します
mBuilder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);
mBuilder.setDefaults(Notification.DEFAULT_SOUND);
システムのデフォルト通知用
Uri uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
カスタム通知用
Uri customSoundUri = Uri.parse( "Android.resource://" + getPackageName()+ "/" + R.raw.twirl);
通知音のソース(「twirl」に名前を変更し、res-> rawフォルダーに配置)
https://notificationsounds.com/message-tones/twirl-47
通知ビルダー:
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());
これも使用できます:
Uri uri = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
誰かがまだ必要な場合、これは音と振動で完全に動作します。
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);
たとえば、振動を無効にしたい場合は、振動を新しいlong [] {0,0,0,0,0}に変更します。ほぼ同様のことを音声で行うか、if elseステートメントを使用します。