Added in API level 1
  
  
  
  
MediaPlayer.OnErrorListener
  public
  static
  
  
  interface
  MediaPlayer.OnErrorListener
  
  
  
| android.media.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).
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        boolean | 
      onError(MediaPlayer mp, int what, int extra)
      Called to indicate an error. | 
Public methods
onError
    Added in API level 1
  
      
  
    public abstract boolean onError (MediaPlayer mp, int what, int extra)
Called to indicate an error.
| Parameters | |
|---|---|
| mp | MediaPlayer: the MediaPlayer the error pertains to | 
| what | int: the type of error that has occurred: | 
| extra | int: an extra code, specific to the error. Typically
 implementation dependent.
 | 
| Returns | |
|---|---|
| boolean | 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. | 
