Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static class

MediaPlayer.TrackInfo

extends Object
implements Parcelable
java.lang.Object
   ↳ android.media.MediaPlayer.TrackInfo

Class Overview

Class for MediaPlayer to return each audio/video/subtitle track's metadata.

Summary

Constants
int MEDIA_TRACK_TYPE_AUDIO
int MEDIA_TRACK_TYPE_TIMEDTEXT
int MEDIA_TRACK_TYPE_UNKNOWN
int MEDIA_TRACK_TYPE_VIDEO
[Expand]
Inherited Constants
From interface android.os.Parcelable
Public Methods
int describeContents ()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
MediaFormat getFormat ()
Gets the MediaFormat of the track.
String getLanguage ()
Gets the language code of the track.
int getTrackType ()
Gets the track type.
void writeToParcel ( Parcel dest, int flags)
Flatten this object in to a Parcel.
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

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.

public MediaFormat getFormat ()

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 ()

Gets the track type.

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 .