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


Base callback type for remote playback requests.

Summary

Public constructors

RemotePlaybackClient.ActionCallback()

Public methods

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

Called when a media control request fails.

Inherited methods

From class java.lang.Object

Public constructors

RemotePlaybackClient.ActionCallback

RemotePlaybackClient.ActionCallback ()

Public methods

onError

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

Called when a media control request fails.

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!