Android APIs
Added in API level 1
public static interface

MediaPlayer.OnErrorListener

android.media.MediaPlayer.OnErrorListener

Class Overview

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

Summary

Public Methods
abstract boolean onError(MediaPlayer mp, int what, int extra)
Called to indicate an error.

Public Methods

public abstract boolean onError (MediaPlayer mp, int what, int extra)

Added in API level 1

Called to indicate an error.

Parameters
mp the MediaPlayer the error pertains to
what the type of error that has occurred:
extra an extra code, specific to the error. Typically implementation dependent.
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.