Most visited

Recently visited

RemotePlaybackClient.ActionCallback

public static abstract class RemotePlaybackClient.ActionCallback
extends Object

java.lang.Object
   ↳ android.support.v7.media.RemotePlaybackClient.ActionCallback
Known Direct Subclasses


用于远程回放请求的基本回调类型。

Summary

Public constructors

RemotePlaybackClient.ActionCallback()

Public methods

void onError(String error, int code, Bundle data)

媒体控制请求失败时调用。

Inherited methods

From class java.lang.Object

Public constructors

RemotePlaybackClient.ActionCallback

RemotePlaybackClient.ActionCallback ()

Public methods

onError

void onError (String error, 
                int code, 
                Bundle data)

媒体控制请求失败时调用。

Parameters
error String: A localized error message which may be shown to the user, or null if the cause of the error is unclear.
code int: The error code, or ERROR_UNKNOWN if unknown.
data Bundle: The error data bundle, or null if none.

Hooray!