Lines Matching defs:item

200      * @param parentId The id of the parent media item whose list of children
230 * @param parentId The id of the parent media item whose list of children
259 * @param parentId The id of the parent media item whose list of children
277 * @param parentId The id of the parent media item whose list of children
297 * @param mediaId The id of the item to retrieve.
305 * A class with information on a single media item for use in browsing media.
318 * Flag: Indicates that the item has children of its own.
323 * Flag: Indicates that the item is playable.
325 * The id of this item may be passed to
378 * @param flags The flags for this item.
433 * Gets the flags of the item.
440 * Returns whether this item is browsable.
448 * Returns whether this item is playable.
463 * Returns the media id in the {@link MediaDescriptionCompat} for this item.
572 * @param parentId The media id of the parent media item.
581 * @param parentId The media id of the parent media item.
598 * @param parentId The media id of the parent media item whose children could not be loaded.
610 * @param parentId The media id of the parent media item whose children could
711 * Called when the item has been returned by the browser service.
713 * @param item The item that was returned or null if it doesn't exist.
715 public void onItemLoaded(MediaItem item) {
719 * Called when the item doesn't exist or there was an error retrieving it.
721 * @param itemId The media id of the media item which could not be loaded.
733 MediaItem item = MediaBrowserCompat.MediaItem.CREATOR.createFromParcel(itemParcel);
735 ItemCallback.this.onItemLoaded(item);
1038 Log.i(TAG, "Remote error getting media item.");
1404 Log.i(TAG, "Remote error subscribing media item: " + parentId);
1495 Log.i(TAG, "Remote error getting media item: " + mediaId);
1793 Parcelable item = resultData.getParcelable(MediaBrowserServiceCompat.KEY_MEDIA_ITEM);
1794 if (item == null || item instanceof MediaItem) {
1795 mCallback.onItemLoaded((MediaItem) item);