I'm currently trying to play raw file as ringtone on LG optimus.

Uri uri = Uri.parse("android.resource://" + curContext.getPackageName() + "/" + R.raw.alert);
mDefaultRingtone = RingtoneManager.getRingtone(curContext, uri);
mDefaultRingtone.play();

I'm using this code on all other phones and it's fine. on the LG devices(i have 2 Optimus devices - OS 2.2.2 and 2.3.3) it always plays the default system ringtone and not my resource.

Help would be much appreciated

link|improve this question
feedback

1 Answer

I FOUND AN OVERRIDE

just for the mDefaultRingtone i use a media player item.

MediaPlayer.create(this, mUriForDefaultItem);

Then upon click i the sound according to list position.

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.