hi, i hope there is someone who has some experience with ringtones

in short, i open RingtoneManager and i choose ringtone from it using:

mRingtone=mRingtoneManager.getRingtone(position);
mRingtone.play();

after some time i make following test:
if(mRingtone!=null && mRingtone.isPlaying())
{
        mRingtone.stop();
        mRingtone=null;
}
else
{
  some action
}

problem is that mRingtone.isPlaying() always returns false, even if
sound is still played!
is it some problem in api, or did i misunderstood anything?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to