MediaDescription
public
class
MediaDescription
extends Object
implements
Parcelable
java.lang.Object | |
↳ | android.media.MediaDescription |
A simple set of metadata for a media item suitable for display. This can be
created using the Builder or retrieved from existing metadata using
MediaMetadata#getDescription()
.
Summary
Nested classes | |
---|---|
class |
MediaDescription.Builder
Builder for |
Constants | |
---|---|
long |
BT_FOLDER_TYPE_ALBUMS
The type of folder that contains folders categorized by album as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
long |
BT_FOLDER_TYPE_ARTISTS
The type of folder that contains folders categorized by artist as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
long |
BT_FOLDER_TYPE_GENRES
The type of folder that contains folders categorized by genre as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
long |
BT_FOLDER_TYPE_MIXED
The type of folder that is unknown or contains media elements of mixed types as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
long |
BT_FOLDER_TYPE_PLAYLISTS
The type of folder that contains folders categorized by playlist as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
long |
BT_FOLDER_TYPE_TITLES
The type of folder that contains media elements only as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
long |
BT_FOLDER_TYPE_YEARS
The type of folder that contains folders categorized by year as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
String |
EXTRA_BT_FOLDER_TYPE
Used as a long extra field to indicate the bluetooth folder type of the media item as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. |
Inherited constants |
---|
Fields | |
---|---|
public
static
final
Creator<MediaDescription> |
CREATOR
|
Public methods | |
---|---|
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
boolean
|
equals(Object o)
Indicates whether some other object is "equal to" this one. |
CharSequence
|
getDescription()
Returns a description suitable for display or null. |
Bundle
|
getExtras()
Returns any extras that were added to the description. |
Bitmap
|
getIconBitmap()
Returns a bitmap icon suitable for display or null. |
Uri
|
getIconUri()
Returns a Uri for an icon suitable for display or null. |
String
|
getMediaId()
Returns the media id or null. |
Uri
|
getMediaUri()
Returns a Uri representing this content or null. |
CharSequence
|
getSubtitle()
Returns a subtitle suitable for display or null. |
CharSequence
|
getTitle()
Returns a title suitable for display or null. |
String
|
toString()
Returns a string representation of the object. |
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel. |
Inherited methods | |
---|---|
Constants
BT_FOLDER_TYPE_ALBUMS
public static final long BT_FOLDER_TYPE_ALBUMS
The type of folder that contains folders categorized by album as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 2 (0x0000000000000002)
BT_FOLDER_TYPE_ARTISTS
public static final long BT_FOLDER_TYPE_ARTISTS
The type of folder that contains folders categorized by artist as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 3 (0x0000000000000003)
BT_FOLDER_TYPE_GENRES
public static final long BT_FOLDER_TYPE_GENRES
The type of folder that contains folders categorized by genre as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 4 (0x0000000000000004)
BT_FOLDER_TYPE_MIXED
public static final long BT_FOLDER_TYPE_MIXED
The type of folder that is unknown or contains media elements of mixed types as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 0 (0x0000000000000000)
BT_FOLDER_TYPE_PLAYLISTS
public static final long BT_FOLDER_TYPE_PLAYLISTS
The type of folder that contains folders categorized by playlist as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 5 (0x0000000000000005)
BT_FOLDER_TYPE_TITLES
public static final long BT_FOLDER_TYPE_TITLES
The type of folder that contains media elements only as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 1 (0x0000000000000001)
BT_FOLDER_TYPE_YEARS
public static final long BT_FOLDER_TYPE_YEARS
The type of folder that contains folders categorized by year as specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5.
Constant Value: 6 (0x0000000000000006)
EXTRA_BT_FOLDER_TYPE
public static final String EXTRA_BT_FOLDER_TYPE
Used as a long extra field to indicate the bluetooth folder type of the media item as
specified in the section 6.10.2.2 of the Bluetooth AVRCP 1.5. This is valid only for
MediaBrowser.MediaItem
with MediaBrowser.MediaItem#FLAG_BROWSABLE
. The value
should be one of the following:
BT_FOLDER_TYPE_MIXED
BT_FOLDER_TYPE_TITLES
BT_FOLDER_TYPE_ALBUMS
BT_FOLDER_TYPE_ARTISTS
BT_FOLDER_TYPE_GENRES
BT_FOLDER_TYPE_PLAYLISTS
BT_FOLDER_TYPE_YEARS
See also:
Constant Value: "android.media.extra.BT_FOLDER_TYPE"
Fields
Public methods
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation. For example, if the object will
include a file descriptor in the output of writeToParcel(android.os.Parcel, int)
,
the return value of this method must include the
CONTENTS_FILE_DESCRIPTOR
bit.
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled
by this Parcelable object instance.
Value is either 0 or CONTENTS_FILE_DESCRIPTOR |
equals
public boolean equals (Object o)
Indicates whether some other object is "equal to" this one.
The equals
method implements an equivalence relation
on non-null object references:
- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.
Parameters | |
---|---|
o |
Object : the reference object with which to compare. |
Returns | |
---|---|
boolean |
true if this object is the same as the obj
argument; false otherwise. |
getDescription
public CharSequence getDescription ()
Returns a description suitable for display or null.
Returns | |
---|---|
CharSequence |
A description or null. |
getExtras
public Bundle getExtras ()
Returns any extras that were added to the description.
Returns | |
---|---|
Bundle |
A bundle of extras or null. |
getIconBitmap
public Bitmap getIconBitmap ()
Returns a bitmap icon suitable for display or null.
Returns | |
---|---|
Bitmap |
An icon or null. |
getIconUri
public Uri getIconUri ()
Returns a Uri for an icon suitable for display or null.
Returns | |
---|---|
Uri |
An icon uri or null. |
getMediaId
public String getMediaId ()
Returns the media id or null. See
MediaMetadata#METADATA_KEY_MEDIA_ID
.
Returns | |
---|---|
String |
getMediaUri
public Uri getMediaUri ()
Returns a Uri representing this content or null.
Returns | |
---|---|
Uri |
A media Uri or null. |
getSubtitle
public CharSequence getSubtitle ()
Returns a subtitle suitable for display or null.
Returns | |
---|---|
CharSequence |
A subtitle or null. |
getTitle
public CharSequence getTitle ()
Returns a title suitable for display or null.
Returns | |
---|---|
CharSequence |
A title or null. |
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |
writeToParcel
public void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel : The Parcel in which the object should be written.
This value cannot be null . |
flags |
int : Additional flags about how the object should be written.
May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE .
Value is either 0 or a combination of Parcelable.PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.