2011-05-31 54 views
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 () ; 

回答

0

我结束了持续时间很长的音频,而不是1秒,现在是10秒。它看起来并没有更多地影响它。工作良好

相关问题