I'm trying to write an app that (among other things) will change the user's ringtone based on their location.

However, I'm having difficulty setting the ringtone of my phone from within my app. I've been able to display a list of the phone's ringtones, and have been using the following code to try and set the ringtone:

RingtoneManager.setActualDefaultRingtoneUri(applicationContext, 
      RingtoneManager.TYPE_RINGTONE,
      MediaStore.Audio.Media.getContentUriForPath(settings.getRingtoneURI()));

Settings.System.putString(c.getContentResolver(), Settings.System.RINGTONE, 
      settings.getRingtoneURI());

where settings.getRingtoneURI() returns a string with the URI of the desired ringtone.

When I run this, I receive no errors but the ringtone does not change.

Any advice?

link|improve this question

71% accept rate
Duplicate of stackoverflow.com/questions/1271777/… – John Leehey Jun 1 '11 at 21:06
I actually saw that question prior to posting my own. However, I'm not trying to apply a ringtone by creating a URI from an audio source. I want to use one of the phone's preexisting ringtones. I'm able to display a dialog which lists the available ringtones, but for some reason the above code does not set the default ringtone to the user's selection. – dcrooney Jun 4 '11 at 0:11
please refer the following question stackoverflow.com/questions/1271777/… – dhams Jul 12 '11 at 12:26
@dhams: That's the same question that John pointed out. – dcrooney Jul 19 '11 at 20:17
feedback

1 Answer

Does your app have permission android.permission.WRITE_SETTINGS?

Barry

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.