Android: set SMS notification tone

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

+3
source share
1 answer

It looks like you should use the RingtoneManager class:

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

I removed the code here: fooobar.com/questions/319875 / ... .

+6
source

Source: https://habr.com/ru/post/1777979/


All Articles