I am Using this code to play a .mp3 file from "res/raw". Problem is that this is 1 sec file. And I put player.setLooping True, but as the file play then it take time for replay the sound. That seem like a pause in sound. I want to avoid it... What i want is countiniously play the 1sec lenght file without a pause ever. Can you please help?
MyAppTesting.player = MediaPlayer.create ( getApplicationContext ( ) , R.raw.idle ) ;
MyAppTesting.player.setLooping ( true ) ;
MyAppTesting.player.start ( ) ;