FileDocCategorySizeDatePackage
AudioRoutesInfo.javaAPI DocAndroid 5.1 API2088Thu Mar 12 22:22:30 GMT 2015android.media

AudioRoutesInfo

public class AudioRoutesInfo extends Object implements android.os.Parcelable
Information available from AudioService about the current routes.
hide

Fields Summary
static final int
MAIN_SPEAKER
static final int
MAIN_HEADSET
static final int
MAIN_HEADPHONES
static final int
MAIN_DOCK_SPEAKERS
static final int
MAIN_HDMI
CharSequence
mBluetoothName
int
mMainType
public static final Parcelable.Creator
CREATOR
Constructors Summary
public AudioRoutesInfo()


      
    
public AudioRoutesInfo(AudioRoutesInfo o)

        mBluetoothName = o.mBluetoothName;
        mMainType = o.mMainType;
    
AudioRoutesInfo(android.os.Parcel src)

        mBluetoothName = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(src);
        mMainType = src.readInt();
    
Methods Summary
public intdescribeContents()

        return 0;
    
public voidwriteToParcel(android.os.Parcel dest, int flags)

        TextUtils.writeToParcel(mBluetoothName, dest, flags);
        dest.writeInt(mMainType);