安卓:设置短信通知音知音、短信通

2023-09-06 17:39:48 作者:你递的红塔山档次太低

我需要使用code在Android的改变短信通知音。任何帮助是AP preciated ...

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

推荐答案

看起来你应该使用RingtoneManager类:

Looks like you should use RingtoneManager class:

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

我解除了code从这里开始:StackOverflow帖子。