RemotePlaybackClient.ActionCallback
public
static
abstract
class
RemotePlaybackClient.ActionCallback
extends Object
java.lang.Object
|
↳ |
androidx.mediarouter.media.RemotePlaybackClient.ActionCallback
|
Base callback type for remote playback requests.
Summary
Public methods |
void
|
onError(String error, int code, Bundle data)
Called when a media control request fails.
|
Inherited methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public constructors
ActionCallback
public ActionCallback ()
Public methods
onError
public 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 MediaControlIntent.ERROR_UNKNOWN if unknown. |
data |
Bundle : The error data bundle, or null if none.
|