FileDocCategorySizeDatePackage
VolumeProvider.javaAPI DocAndroid 5.1 API827Sat Mar 14 14:09:42 GMT 2015android.media

VolumeProvider.java

package android.media;
public abstract class VolumeProvider
{
public  VolumeProvider(int volumeControl, int maxVolume, int currentVolume) { throw new RuntimeException("Stub!"); }
public final  int getVolumeControl() { throw new RuntimeException("Stub!"); }
public final  int getMaxVolume() { throw new RuntimeException("Stub!"); }
public final  int getCurrentVolume() { throw new RuntimeException("Stub!"); }
public final  void setCurrentVolume(int currentVolume) { throw new RuntimeException("Stub!"); }
public  void onSetVolumeTo(int volume) { throw new RuntimeException("Stub!"); }
public  void onAdjustVolume(int direction) { throw new RuntimeException("Stub!"); }
public static final int VOLUME_CONTROL_ABSOLUTE = 2;
public static final int VOLUME_CONTROL_FIXED = 0;
public static final int VOLUME_CONTROL_RELATIVE = 1;
}