to top
Android APIs
Added in API level 3
public static interface

MediaPlayer.OnInfoListener

android.media.MediaPlayer.OnInfoListener

Class Overview

Interface definition of a callback to be invoked to communicate some info and/or warning about the media or its playback.

Summary

Public Methods

? Examples
abstract boolean onInfo( MediaPlayer mp, int what, int extra)
Called to indicate an info or a warning.

Public Methods

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

Added in API level 3

Called to indicate an info or a warning.

Parameters
mp the MediaPlayer the info pertains to.
what the type of info or warning.
extra an extra code, specific to the info. Typically implementation dependent.
Returns
  • True if the method handled the info, false if it didn't. Returning false, or not having an OnErrorListener at all, will cause the info to be discarded.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.