Added in API level 3
OnInfoListener
interface OnInfoListener
android.media.MediaPlayer.OnInfoListener |
Interface definition of a callback to be invoked to communicate some info and/or warning about the media or its playback.
Summary
Public methods | |
---|---|
abstract Boolean |
onInfo(mp: MediaPlayer!, what: Int, extra: Int) Called to indicate an info or a warning. |
Public methods
onInfo
Added in API level 3
abstract fun onInfo(
mp: MediaPlayer!,
what: Int,
extra: Int
): Boolean
Called to indicate an info or a warning.
Parameters | |
---|---|
mp |
MediaPlayer!: the MediaPlayer the info pertains to. |
what |
Int: the type of info or warning.
|
extra |
Int: an extra code, specific to the info. Typically implementation dependent. |
Return | |
---|---|
Boolean |
True if the method handled the info, false if it didn't. Returning false, or not having an OnInfoListener at all, will cause the info to be discarded. |