I'm using RingtoneManager, and apparently on some phones it returns null all of the time. I know it returns null if the sound is silent or it cant find the tone. Why would null be returned if the sound is on and there is a tone? The code works on my nexus s....

Here is what I am using:

Ringtone ringtone;
ringtone = RingtoneManager.getRingtone(context, RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
if(ringtone == null)
{
    Log.d("Debug", "ringtone is null");
}
else
{
    ringtone.play();
}

I have all permissions enabled to play ringtone (it works on my phone) and even have SD card permissions enabled just in case the ringtone is on the SD card. Any thoughts?

link|improve this question
According to the source code for RingtoneManager, the only case in which getRingtone returns null is when the ringtone at the given URI can't be opened. It should also put a line with "Failed to open ringtone " + ringtoneUri in logcat. Are you seeing such lines in your logcat output? – Jason Plank Nov 10 '11 at 16:19
Not on mine, but some users are complaining about the ringtone not firing. Before I had the NULL check it was crashing because of a dereferenced pointer. The only think I can assume is that it could not get a URI... But I don't know why it wouldn't be able to do that when they have a valid ringtone. Maybe a resource lock? – atomicbaum Dec 1 '11 at 23:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.