我无法在Soundpool中播放某些.wav文件。我什么也听不到。某些文件可以正常播放。为什么?
码
AudioManager mgr = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
int streamVolume = mgr.getStreamVolume(AudioManager.STREAM_MUSIC);
soundPool.play(soundPoolMap.get(sound), streamVolume, streamVolume, 1, 0, 1f);
最佳答案
我在音池和文件格式方面遇到很多问题。 Read my original question,可能对您有帮助。
基本上,我更改为使用MediaPlayer,没有更多问题。