Most visited

Recently visited

PlaybackStateCompat.CustomAction

public static final class PlaybackStateCompat.CustomAction
extends Object implements Parcelable

java.lang.Object
   ↳ android.support.v4.media.session.PlaybackStateCompat.CustomAction


CustomActions可用于通过将应用程序特定操作暴露给 Controllers来扩展标准传输控件的功能。

Summary

Nested classes

class PlaybackStateCompat.CustomAction.Builder

PlaybackStateCompat.CustomAction对象生成器。

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<PlaybackStateCompat.CustomAction> CREATOR

Public methods

int describeContents()

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

static PlaybackStateCompat.CustomAction fromCustomAction(Object customActionObj)

从框架 PlaybackState.CustomAction对象创建一个实例。

String getAction()

返回 PlaybackStateCompat.CustomAction的操作。

Object getCustomAction()

获取底层框架 PlaybackState.CustomAction对象。

Bundle getExtras()

返回提供关于操作的其他特定于应用程序的信息的附加信息,如果没有,则返回null。

int getIcon()

返回 Session's包中图标的资源ID。

CharSequence getName()

返回此操作的显示名称。

String toString()

返回对象的字符串表示形式。

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.

fromCustomAction

PlaybackStateCompat.CustomAction fromCustomAction (Object customActionObj)

从框架 PlaybackState.CustomAction对象创建一个实例。

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

Parameters
customActionObj Object: A PlaybackState.CustomAction object, or null if none.
Returns
PlaybackStateCompat.CustomAction An equivalent PlaybackStateCompat.CustomAction object, or null if none.

getAction

String getAction ()

返回 PlaybackStateCompat.CustomAction的操作。

Returns
String The action of the PlaybackStateCompat.CustomAction.

getCustomAction

Object getCustomAction ()

获取底层框架 PlaybackState.CustomAction对象。

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

Returns
Object An equivalent PlaybackState.CustomAction object, or null if none.

getExtras

Bundle getExtras ()

返回提供关于操作的其他特定于应用程序的信息的附加信息,如果没有,则返回null。 如果知道如何处理这些参数,则这些参数将被MediaControllerCompat使用。

Returns
Bundle Optional arguments for the PlaybackStateCompat.CustomAction.

getIcon

int getIcon ()

返回 Session's包中图标的资源ID。

Returns
int The resource id of the icon in the Session's package.

getName

CharSequence getName ()

返回此操作的显示名称。 例如“收藏”

Returns
CharSequence The display name of this PlaybackStateCompat.CustomAction.

toString

String toString ()

返回对象的字符串表示形式。 一般来说, toString方法返回一个“文本表示”这个对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。

ObjecttoString方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @ ”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
String a string representation of the object.

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!