触摸按钮后我想播放声音。 MediaPlayer工作正常,但我在某处读到这个库很长.wav(就像音乐一样)。
有没有更好的方法来打短.wav(2-3秒)?
答案 0 :(得分:24)
SoundPool是正确的类。以下代码是如何使用它的示例。它也是我在我的几个应用程序中用来管理声音的代码。您可以随心所欲地发出声音(或者在内存允许的情况下)。
public class SoundPoolPlayer {
private SoundPool mShortPlayer= null;
private HashMap mSounds = new HashMap();
public SoundPoolPlayer(Context pContext)
{
// setup Soundpool
this.mShortPlayer = new SoundPool(4, AudioManager.STREAM_MUSIC, 0);
mSounds.put(R.raw.<sound_1_name>, this.mShortPlayer.load(pContext, R.raw.<sound_1_name>, 1));
mSounds.put(R.raw.<sound_2_name>, this.mShortPlayer.load(pContext, R.raw.<sound_2_name>, 1));
}
public void playShortResource(int piResource) {
int iSoundId = (Integer) mSounds.get(piResource);
this.mShortPlayer.play(iSoundId, 0.99f, 0.99f, 0, 0, 1);
}
// Cleanup
public void release() {
// Cleanup
this.mShortPlayer.release();
this.mShortPlayer = null;
}
}
您可以通过致电:
来使用它SoundPoolPlayer sound = new SoundPoolPlayer(this);
在您的Activity的onCreate()中(或之后的任何时间)。在那之后,播放一个简单的声音:
sound.playShortResource(R.raw.<sound_name>);
最后,完成声音后,请致电:
sound.release();
释放资源。