SoundSystem.java | 82 synchronized public final int play(Sound sound, boolean loop, int priority) { method in class:SoundSystem 85 stream = mSoundPool.play(sound.soundId, 1.0f, 1.0f, priority, loop ? -1 : 0, 1.0f); 94 synchronized public final int play(Sound sound, boolean loop, int priority, float volume, float rate) { method in class:SoundSystem 97 stream = mSoundPool.play(sound.soundId, volume, volume, priority, loop ? -1 : 0, rate); 130 // sounds will continue to play. Rather that reproduce all the bookkeeping
|