android.media
Interface MediaPlayer.OnErrorListener
- Enclosing class:
- MediaPlayer
public static interface MediaPlayer.OnErrorListener
Interface definition of a callback to be invoked when there
has been an error during an asynchronous operation (other errors
will throw exceptions at method call time).
|
Method Summary |
boolean |
onError(MediaPlayer mp,
int what,
int extra)
Called to indicate an error. |
onError
boolean onError(MediaPlayer mp,
int what,
int extra)
- Called to indicate an error.
- Parameters:
mp - the MediaPlayer the error pertains towhat - the type of error that has occurred:
extra - an extra code, specific to the error type
- Returns:
- True if the method handled the error, false if it didn't.
Returning false, or not having an OnErrorListener at all, will
cause the OnCompletionListener to be called.
Please submit a feedback, bug or feature