Well I found this code , after running this I got some activity (as Dialog) to choose from, so far so good. But my problem is that I want to choose some mp3 as my ringtone, how can I do that ?

This code give me only the default ringtones in the list:

        Intent intent = new Intent( RingtoneManager.ACTION_RINGTONE_PICKER);
        intent.putExtra( RingtoneManager.EXTRA_RINGTONE_TYPE,
        RingtoneManager.TYPE_RINGTONE);
        intent.putExtra( RingtoneManager.EXTRA_RINGTONE_TITLE, "Select Tone111");

        intent.putExtra( RingtoneManager.EXTRA_RINGTONE_EXISTING_URI,
        Uri.parse( "/sdcard/Slipknot - Spit It Out.mp3"));

        startActivityForResult( intent, 0);
link|improve this question

64% accept rate
Or maybe if this is not the way it should be done, than how can I change the ring tone of the phone to some mp3 on my sdcard ? – Lukap Jun 29 '11 at 8:09
feedback

2 Answers

up vote 1 down vote accepted

The solution of this is to add folder ringtone in audio ( /sdcard/media/audio/ringtone/ ) and you can add mp3 in this folder so lather on they will be shown in the list

link|improve this answer
feedback

You can use TYPE_ALL

link|improve this answer
I tried with TYPE_ALL but only give the same plus sounds for alarms and notifications nothing more, I still doesn't see any mp3 in the list – Lukap Jun 29 '11 at 10:21
Can you check this url : maketecheasier.com/add-custom-alarm-ringtone-in-android/2010/01/… – Sandy Jun 29 '11 at 19:22
feedback

Your Answer

 
or
required, but never shown

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