0
我使用此代碼從「res/raw」播放.mp3文件。問題是這是1秒文件。我把player.setLooping設爲True,但是隨着文件的播放,重播聲音需要時間。這聽起來像是一個停頓的聲音。我想避免它...我想要的是毫無停頓地長時間播放1秒長的文件。你能幫忙嗎?如何解決使用MediaPlayer Android循環播放.mp3時的暫停?
MyAppTesting.player = MediaPlayer.create (getApplicationContext () , R.raw.idle) ;
MyAppTesting.player.setLooping (true) ;
MyAppTesting.player.start () ;