Possible Duplicate:
How to set ringtone in Android from my activity?
I have sounds files in my res/raw folder and i want to select a sound to set as a ringtone on the click of a button. Wonder how can i do that?
I have sounds files in my res/raw folder and i want to select a sound to set as a ringtone on the click of a button. Wonder how can i do that?
| ||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
@Maxood The above code from @Clive is what you need to set the ringtone. You will need the absolute path to the file, which you can't get from a raw resource. The solution is to get the resource file asset and write it to the sdcard 1st, before you give it to the content resolver for insertion.
Then you can use the previously posted solution
hope this helps | |||||||
feedback
|
|
Hopefully by now you have gotten your program working the way you wanted. Just for the record though, you should look into saving the file to the sdcard under a ringtones folder. Make sure it is lower cased as that does matter in Android. | |||
|
feedback
|
|
I use "Rings Extended" http://www.androidapps.com/t/rings-extended With that app installed when you go to change your ringtone you will have the option to select Rings Extended. Also use "Ringdroid" to edit ringtones. | |||||
feedback
|
|
Try this, it works for me:
| |||
|
feedback
|