16

我想在触摸按钮后播放声音。MediaPlayer 工作正常,但我在某处读到这个库是长 .wav(如音​​乐)。

有没有更好的方法来播放短 .wav(2-3 秒)?

4

1 回答 1

29

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();

以释放资源。

于 2012-12-14T19:34:57.023 回答