I want to play device tunes using MediaPlayer, but it seems like a metadata tag
ANDROID_LOOP = true
installed MediaPlayer ignores setLooping method call
mMediaPlayer.setLooping(false);
and in any case, audio will sound. Also, the onCompletionListener method is not called.
I noticed that even audio applications, such as ES Media Player loopback audio clips with this tag, are set to true, regardless of whether the loop is on or off.
So my question is, can I
- make MediaPlayer ignore this tag
- temporarily change the tag so MediaPlayer does not loop the audio
This question has arisen because of ring tones, but it, of course, is not melodic. It's funny that in the tutorials that I found on how to play ringtones, mMediaPlayer.setLooping (true) is set; so they donβt need to deal with this problem, it seems ...
thanks

source share