Why sound do not loop?

suppose using sound.start(0,999) will loop the sound for 999 times.
when i load mp3 externally and want it to loop for many time by using below code:

bgSound = new Sound(this);
bgSound.loadSound(“song.mp3”, true);
bgsound.start(0, 99);

why the song do not loop? it only play for one time.

i’ve just found out the solutions. just change the true value to false(not streaming). sorry for my stupidity.:stuck_out_tongue: