I have a sound that I'm looping... so I've set
mp.setLooping(true);
I'm using this to pause:
mp.pause();
and this to start:
if(!mp.isPlaying())
mp.start();
Now, I want to be able to start and pause the sound freely... This works for a while, but occasionally what happens is that the sound loops, and I'm no longer able to pause it... Why does this happen and how can I fix it? Thanks.



