FileDocCategorySizeDatePackage
SoundPool.javaAPI DocAndroid 5.1 API2513Sat Mar 14 14:09:40 GMT 2015android.media

SoundPool.java

package android.media;
public class SoundPool
{
public static class Builder
{
public  Builder() { throw new RuntimeException("Stub!"); }
public  android.media.SoundPool.Builder setMaxStreams(int maxStreams) throws java.lang.IllegalArgumentException { throw new RuntimeException("Stub!"); }
public  android.media.SoundPool.Builder setAudioAttributes(android.media.AudioAttributes attributes) throws java.lang.IllegalArgumentException { throw new RuntimeException("Stub!"); }
public  android.media.SoundPool build() { throw new RuntimeException("Stub!"); }
}
public static interface OnLoadCompleteListener
{
public abstract  void onLoadComplete(android.media.SoundPool soundPool, int sampleId, int status);
}
@Deprecated
public  SoundPool(int maxStreams, int streamType, int srcQuality) { throw new RuntimeException("Stub!"); }
public  int load(java.lang.String path, int priority) { throw new RuntimeException("Stub!"); }
public  int load(android.content.Context context, int resId, int priority) { throw new RuntimeException("Stub!"); }
public  int load(android.content.res.AssetFileDescriptor afd, int priority) { throw new RuntimeException("Stub!"); }
public  int load(java.io.FileDescriptor fd, long offset, long length, int priority) { throw new RuntimeException("Stub!"); }
public final  boolean unload(int soundID) { throw new RuntimeException("Stub!"); }
public final  int play(int soundID, float leftVolume, float rightVolume, int priority, int loop, float rate) { throw new RuntimeException("Stub!"); }
public final  void pause(int streamID) { throw new RuntimeException("Stub!"); }
public final  void resume(int streamID) { throw new RuntimeException("Stub!"); }
public final  void autoPause() { throw new RuntimeException("Stub!"); }
public final  void autoResume() { throw new RuntimeException("Stub!"); }
public final  void stop(int streamID) { throw new RuntimeException("Stub!"); }
public final  void setVolume(int streamID, float leftVolume, float rightVolume) { throw new RuntimeException("Stub!"); }
public final  void setPriority(int streamID, int priority) { throw new RuntimeException("Stub!"); }
public final  void setLoop(int streamID, int loop) { throw new RuntimeException("Stub!"); }
public final  void setRate(int streamID, float rate) { throw new RuntimeException("Stub!"); }
public  void setOnLoadCompleteListener(android.media.SoundPool.OnLoadCompleteListener listener) { throw new RuntimeException("Stub!"); }
public final  void release() { throw new RuntimeException("Stub!"); }
}