Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Set SMS Notification Tone

I need to change the SMS notification tone using code in android. Any help is appreciated...

like image 845
Vivek Avatar asked Dec 13 '25 22:12

Vivek


1 Answers

Looks like you should use RingtoneManager class:

RingtoneManager.setActualDefaultRingtoneUri(
  MainActivity.this,
  RingtoneManager.TYPE_NOTIFICATION,
  newUri
);

I lifted the code from here: StackOverflow post.

like image 152
jcollum Avatar answered Dec 16 '25 12:12

jcollum



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!