Most visited

Recently visited

MediaSessionCompat.Token

public static final class MediaSessionCompat.Token
extends Object implements Parcelable

java.lang.Object
   ↳ android.support.v4.media.session.MediaSessionCompat.Token


代表正在进行的会议。 这可能会被会话所有者传递给应用程序,以允许他们创建一个MediaControllerCompat与会话进行通信。

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<MediaSessionCompat.Token> CREATOR

Public methods

int describeContents()

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

static MediaSessionCompat.Token fromToken(Object token)

从框架 MediaSession.Token对象创建一个compat Token。

Object getToken()

获取底层框架 MediaSession.Token对象。

void writeToParcel(Parcel dest, int flags)

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

Inherited methods

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

Fields

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.

fromToken

MediaSessionCompat.Token fromToken (Object token)

从框架 MediaSession.Token对象创建compat Token。

此方法仅在 LOLLIPOP及更高版本上受支持。

Parameters
token Object: The framework token object.
Returns
MediaSessionCompat.Token A compat Token for use with MediaControllerCompat.

getToken

Object getToken ()

获取底层框架 MediaSession.Token对象。

此方法仅在API 21+上受支持。

Returns
Object The underlying MediaSession.Token object, or null if none.

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!