Most visited

Recently visited

ParcelableVolumeInfo

public class ParcelableVolumeInfo
extends Object implements Parcelable

java.lang.Object
    android.support.v4.media.session.ParcelableVolumeInfo


传递关于 MediaSessionCompat的音频配置信息的便利课程。

摘要(Summary)

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<ParcelableVolumeInfo> CREATOR

public int audioStream

public int controlType

public int currentVolume

public int maxVolume

public int volumeType

Public constructors

ParcelableVolumeInfo(int volumeType, int audioStream, int controlType, int maxVolume, int currentVolume)
ParcelableVolumeInfo(Parcel from)

公共方法(Public methods)

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

继承方法(Inherited methods)

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Creator<ParcelableVolumeInfo> CREATOR

audioStream

int audioStream

controlType

int controlType

currentVolume

int currentVolume

maxVolume

int maxVolume

volumeType

int volumeType

Public constructors

ParcelableVolumeInfo

ParcelableVolumeInfo (int volumeType, 
                int audioStream, 
                int controlType, 
                int maxVolume, 
                int currentVolume)

参数(Parameters)
volumeType int
audioStream int
controlType int
maxVolume int
currentVolume int

ParcelableVolumeInfo

ParcelableVolumeInfo (Parcel from)

参数(Parameters)
from Parcel

公共方法(Public methods)

describeContents

int describeContents ()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象在writeToParcel(Parcel, int)的输出中包含writeToParcel(Parcel, int) ,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR位。

返回(Returns)
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

writeToParcel

void writeToParcel (Parcel dest, 
                int flags)

将此对象平铺到一个包裹中。

参数(Parameters)
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!