ฉันใช้Notification.Builderเพื่อสร้างการแจ้งเตือน ตอนนี้ฉันต้องการใช้การแจ้งเตือนเสียงเริ่มต้นกับ:
builder.setSound(Uri sound)
แต่ Uri ไปอยู่ที่ไหนกับการแจ้งเตือนเริ่มต้น?
ฉันใช้Notification.Builderเพื่อสร้างการแจ้งเตือน ตอนนี้ฉันต้องการใช้การแจ้งเตือนเสียงเริ่มต้นกับ:
builder.setSound(Uri sound)
แต่ Uri ไปอยู่ที่ไหนกับการแจ้งเตือนเริ่มต้น?
คำตอบ:
ลองใช้RingtoneManagerเพื่อรับ Default Notification Uri เป็น:
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
Settings.System.DEFAULT_NOTIFICATION_URI
builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
ทำงานได้เช่นกัน
Default Notification Sound
คือ:mBuilder.setDefaults(Notification.DEFAULT_SOUND);
หรือใช้RingtoneManager Class:
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);
หากคุณต้องการปิดใช้งานตัวอย่างเช่นการสั่นเปลี่ยนการสั่นเป็นแบบยาวใหม่ [] {0,0,0,0,0}; เกือบจะคล้ายกันกับเสียงหรือใช้คำสั่ง if else