# Print output for @column tags ?> SoundPool.Builder - Android SDK | Android Developers

Most visited

Recently visited

SoundPool.Builder

public static class SoundPool.Builder
extends Object

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


Builder class for SoundPool objects.

Summary

Public constructors

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

Public constructors

Builder

public 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 AudioAttributes#USAGE_MEDIA (see setAudioAttributes(android.media.AudioAttributes) to change them).

Public methods

build

public SoundPool build ()

Returns
SoundPool

setAudioAttributes

public SoundPool.Builder setAudioAttributes (AudioAttributes attributes)

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

Parameters
attributes AudioAttributes: a non-null

Returns
SoundPool.Builder

Throws
IllegalArgumentException

setMaxStreams

public 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
java.lang.IllegalArgumentException
IllegalArgumentException