Most visited

Recently visited

Added in API level 21

SoundPool.Builder

public static class SoundPool.Builder
extends Object

java.lang.Object
   ↳ android.media.SoundPool.Builder


Builder class for SoundPool objects.

Summary

Public constructors

SoundPool.Builder()

Constructs a new Builder with the defaults format values.

Public methods

SoundPool build()
SoundPool.Builder setAudioAttributes(AudioAttributes attributes)

Sets the AudioAttributes.

SoundPool.Builder setMaxStreams(int maxStreams)

Sets the maximum of number of simultaneous streams that can be played simultaneously.

Inherited methods

From class java.lang.Object

Public constructors

SoundPool.Builder

Added in API level 21
SoundPool.Builder ()

Constructs a new Builder with the defaults format values. If not provided, the maximum number of streams is 1 (see setMaxStreams(int) to change it), and the audio attributes have a usage value of USAGE_MEDIA (see setAudioAttributes(AudioAttributes) to change them).

Public methods

build

Added in API level 21
SoundPool build ()

Returns
SoundPool

setAudioAttributes

Added in API level 21
SoundPool.Builder setAudioAttributes (AudioAttributes attributes)

Sets the AudioAttributes. For examples, game applications will use attributes built with usage information set to USAGE_GAME.

Parameters
attributes AudioAttributes: a non-null
Returns
SoundPool.Builder
Throws
IllegalArgumentException

setMaxStreams

Added in API level 21
SoundPool.Builder setMaxStreams (int maxStreams)

Sets the maximum of number of simultaneous streams that can be played simultaneously.

Parameters
maxStreams int: a value equal to 1 or greater.
Returns
SoundPool.Builder the same Builder instance
Throws
IllegalArgumentException

Hooray!