belongs to Maven artifact com.android.support:support-media-compat:28.0.0-alpha1
MediaBrowserCompat.MediaItem
public
static
class
MediaBrowserCompat.MediaItem
extends Object
implements
Parcelable
java.lang.Object | |
↳ | android.support.v4.media.MediaBrowserCompat.MediaItem |
A class with information on a single media item for use in browsing/searching media. MediaItems are application dependent so we cannot guarantee that they contain the right values.
Summary
Constants | |
---|---|
int |
FLAG_BROWSABLE
Flag: Indicates that the item has children of its own. |
int |
FLAG_PLAYABLE
Flag: Indicates that the item is playable. |
Inherited constants |
---|
From
interface
android.os.Parcelable
|
Fields | |
---|---|
public
static
final
Creator<MediaBrowserCompat.MediaItem> |
CREATOR
|
Public constructors | |
---|---|
MediaBrowserCompat.MediaItem(MediaDescriptionCompat description, int flags)
Create a new MediaItem for use in browsing media. |
Public methods | |
---|---|
int
|
describeContents()
|
static
MediaBrowserCompat.MediaItem
|
fromMediaItem(Object itemObj)
Creates an instance from a framework |
static
List<MediaBrowserCompat.MediaItem>
|
fromMediaItemList(List<?> itemList)
Creates a list of |
MediaDescriptionCompat
|
getDescription()
Returns the description of the media. |
int
|
getFlags()
Gets the flags of the item. |
String
|
getMediaId()
Returns the media id in the |
boolean
|
isBrowsable()
Returns whether this item is browsable. |
boolean
|
isPlayable()
Returns whether this item is playable. |
String
|
toString()
|
void
|
writeToParcel(Parcel out, int flags)
|
Inherited methods | |
---|---|
From
class
java.lang.Object
| |
From
interface
android.os.Parcelable
|
Constants
FLAG_BROWSABLE
int FLAG_BROWSABLE
Flag: Indicates that the item has children of its own.
Constant Value: 1 (0x00000001)
FLAG_PLAYABLE
int FLAG_PLAYABLE
Flag: Indicates that the item is playable.
The id of this item may be passed to
playFromMediaId(String, Bundle)
to start playing it.
Constant Value: 2 (0x00000002)
Fields
Public constructors
MediaBrowserCompat.MediaItem
MediaBrowserCompat.MediaItem (MediaDescriptionCompat description, int flags)
Create a new MediaItem for use in browsing media.
Parameters | |
---|---|
description |
MediaDescriptionCompat : The description of the media, which must include a
media id. |
flags |
int : The flags for this item.
|
Public methods
fromMediaItem
MediaBrowserCompat.MediaItem fromMediaItem (Object itemObj)
Creates an instance from a framework MediaBrowser.MediaItem
object.
This method is only supported on API 21+. On API 20 and below, it returns null.
Parameters | |
---|---|
itemObj |
Object : A MediaBrowser.MediaItem object. |
Returns | |
---|---|
MediaBrowserCompat.MediaItem |
An equivalent MediaBrowserCompat.MediaItem object, or null if none.
|
fromMediaItemList
List<MediaBrowserCompat.MediaItem> fromMediaItemList (List<?> itemList)
Creates a list of MediaBrowserCompat.MediaItem
objects from a framework
MediaBrowser.MediaItem
object list.
This method is only supported on API 21+. On API 20 and below, it returns null.
Parameters | |
---|---|
itemList |
List : A list of MediaBrowser.MediaItem objects. |
Returns | |
---|---|
List<MediaBrowserCompat.MediaItem> |
An equivalent list of MediaBrowserCompat.MediaItem objects, or null if none.
|
getDescription
MediaDescriptionCompat getDescription ()
Returns the description of the media.
Returns | |
---|---|
MediaDescriptionCompat |
getMediaId
String getMediaId ()
Returns the media id in the MediaDescriptionCompat
for this item.
Returns | |
---|---|
String |
See also:
isBrowsable
boolean isBrowsable ()
Returns whether this item is browsable.
Returns | |
---|---|
boolean |
See also:
isPlayable
boolean isPlayable ()
Returns whether this item is playable.
Returns | |
---|---|
boolean |
See also:
toString
String toString ()
Returns | |
---|---|
String |
writeToParcel
void writeToParcel (Parcel out, int flags)
Parameters | |
---|---|
out |
Parcel |
flags |
int |
Classes
- AudioAttributesCompat
- AudioAttributesCompat.Builder
- MediaBrowserCompat
- MediaBrowserCompat.ConnectionCallback
- MediaBrowserCompat.CustomActionCallback
- MediaBrowserCompat.ItemCallback
- MediaBrowserCompat.MediaItem
- MediaBrowserCompat.SearchCallback
- MediaBrowserCompat.SubscriptionCallback
- MediaBrowserServiceCompat
- MediaBrowserServiceCompat.BrowserRoot
- MediaBrowserServiceCompat.Result
- MediaDescriptionCompat
- MediaDescriptionCompat.Builder
- MediaMetadataCompat
- MediaMetadataCompat.Builder
- RatingCompat
- VolumeProviderCompat
- VolumeProviderCompat.Callback