MediaBrowser.ItemCallback

public static abstract class MediaBrowser.ItemCallback
extends Object

java.lang.Object
   ↳ android.media.browse.MediaBrowser.ItemCallback


Callback for receiving the result of MediaBrowser.getItem(String, ItemCallback).

Summary

Public constructors

ItemCallback()

Public methods

void onError(String mediaId)

Called there was an error retrieving it or the connected service doesn't support MediaBrowser.getItem(String, ItemCallback).

void onItemLoaded(MediaBrowser.MediaItem item)

Called when the item has been returned by the connected service.

Inherited methods

Public constructors

ItemCallback

public ItemCallback ()

Public methods

onError

Added in API level 23
public void onError (String mediaId)

Called there was an error retrieving it or the connected service doesn't support MediaBrowser.getItem(String, ItemCallback).

Parameters
mediaId String: The media id of the media item which could not be loaded. This value cannot be null.

onItemLoaded

Added in API level 23
public void onItemLoaded (MediaBrowser.MediaItem item)

Called when the item has been returned by the connected service.

Parameters
item MediaBrowser.MediaItem: The item that was returned or null if it doesn't exist.