Class Overview
Class for MediaPlayer to return each audio/video/subtitle track's metadata.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
From interface
android.os.Parcelable
abstract
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
|
abstract
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel.
|
|
Constants
public
static
final
int
MEDIA_TRACK_TYPE_AUDIO
Constant Value:
2
(0x00000002)
public
static
final
int
MEDIA_TRACK_TYPE_TIMEDTEXT
Constant Value:
3
(0x00000003)
public
static
final
int
MEDIA_TRACK_TYPE_UNKNOWN
Constant Value:
0
(0x00000000)
public
static
final
int
MEDIA_TRACK_TYPE_VIDEO
Constant Value:
1
(0x00000001)
Public Methods
public
int
describeContents
()
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
Returns
- a bitmask indicating the set of special object types marshalled
by the Parcelable.
Gets the MediaFormat
of the track. If the format is
unknown or could not be determined, null is returned.
public
String
getLanguage
()
Gets the language code of the track.
Returns
- a language code in either way of ISO-639-1 or ISO-639-2.
When the language is unknown or could not be determined,
ISO-639-2 language code, "und", is returned.
public
int
getTrackType
()
Returns
- TrackType which indicates if the track is video, audio, timed text.
public
void
writeToParcel
(Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters
dest
| The Parcel in which the object should be written. |
flags
| Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|