Notification.Builderを使用して通知を作成します。今、私はデフォルトのサウンド通知を使用したいと思います:
builder.setSound(Uri sound)
しかし、デフォルトの通知のUriはどこにありますか?
Notification.Builderを使用して通知を作成します。今、私はデフォルトのサウンド通知を使用したいと思います:
builder.setSound(Uri sound)
しかし、デフォルトの通知のUriはどこにありますか?
回答:
RingtoneManagerを使用して、デフォルトの通知URIを次のように取得してみてください。
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
Settings.System.DEFAULT_NOTIFICATION_URI
Default Notification Sound
は次のとおりです。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 = Uri.parse(PreferenceManager.getDefaultSharedPreferences(this).
getString("pref_tone", "content://settings/system/notification_sound"));
mBuilder.setSound(uri);
application
デフォルトのシステムサウンドではなくチャンネルサウンドを取得したいのですが、NotificationChannel channel = new NotificationChannel(ApplicationClass.getInstance().HighNotificationChannelID, getString(R.string.incoming_sms), NotificationManager.IMPORTANCE_HIGH); channel.getSound();
返品 default system 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-470
通知ビルダー:
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());
それでも誰かが必要な場合、これは音と振動で完全にうまく機能します。
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);
たとえば、振動を無効にする場合は、vibrateをnew long [] {0,0,0,0,0}に変更します。サウンドで実行できるほとんど同じこと、またはif elseステートメントを使用します。