tags:

views:

90

answers:

1

What is the Easiest way to stop a soundpool of 4 streams.

    mSoundManager.addSound(1, R.raw.svphorn);
    mSoundManager.addSound(2, R.raw.svpphaser);
    mSoundManager.addSound(3, R.raw.svpwail);
    mSoundManager.addSound(4, R.raw.svpyelp);

I need a button to stop all sounds playing @ one time.

A: 

mySoundPool.autoPause() would stop/pause all streams that are playing. And they can be resumed by calling mySoundPool.autoResume().

Cpt.Ohlund