public static enum MediaPlayer.Status extends Enum<MediaPlayer.Status>
MediaPlayer
.
The principal MediaPlayer
status transitions are given in the
following table:
Current \ Next | READY | PAUSED | PLAYING | STALLED | STOPPED |
---|---|---|---|---|---|
UNKNOWN | pre-roll | ||||
READY | autoplay; play() | ||||
PAUSED | play() | stop() | |||
PLAYING | pause() | buffering data | stop() | ||
STALLED | pause() | data buffered | stop() | ||
STOPPED | pause() | play() |
The table rows represent the current state of the player and the columns
the next state of the player. The cell at the intersection of a given row
and column lists the events which can cause a transition from the row
state to the column state. An empty cell represents an impossible transition.
The transitions to UNKNOWN
and to and from HALTED
status are intentionally not tabulated. UNKNOWN
is the initial
status of the player before the media source is pre-rolled and cannot be
entered once exited. HALTED
is a terminal status entered when
an error occurs and may be transitioned into from any other status but not
exited.
The principal MediaPlayer
status values and transitions are
depicted in the following diagram:
Reaching the end of the media (or the
stopTime
if this is defined) while playing does not cause the
status to change from PLAYING
. Therefore, for example, if
the media is played to its end and then a manual seek to an earlier
time within the media is performed, playing will continue from the
new media time.
Enum Constant and Description |
---|
DISPOSED
State of the player after dispose() method is invoked.
|
HALTED
State of the player when a critical error has occurred.
|
PAUSED
State of the player when playback is paused.
|
PLAYING
State of the player when it is currently playing.
|
READY
State of the player once it is prepared to play.
|
STALLED
State of the player when data coming into the buffer has slowed or
stopped and the playback buffer does not have enough data to continue
playing.
|
STOPPED
State of the player when playback has stopped.
|
UNKNOWN
State of the player immediately after creation.
|
Modifier and Type | Method and Description |
---|---|
static MediaPlayer.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaPlayer.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaPlayer.Status UNKNOWN
public static final MediaPlayer.Status READY
public static final MediaPlayer.Status PAUSED
public static final MediaPlayer.Status PLAYING
public static final MediaPlayer.Status STOPPED
public static final MediaPlayer.Status STALLED
public static final MediaPlayer.Status HALTED
public static final MediaPlayer.Status DISPOSED
Media
and MediaView
objects associated with disposed player can be reused.public static MediaPlayer.Status[] values()
for (MediaPlayer.Status c : MediaPlayer.Status.values()) System.out.println(c);
public static MediaPlayer.Status valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullSubmit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.