public static interface MediaPlayer.OnInfoListener
android.media.MediaPlayer.OnInfoListener |
要调用的回调的接口定义,以传达有关介质或其播放的一些信息和/或警告。
Public methods |
|
---|---|
abstract boolean |
onInfo(MediaPlayer mp, int what, int extra) 打电话表示信息或警告。 |
boolean onInfo (MediaPlayer mp, int what, int extra)
打电话表示信息或警告。
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. |
Returns | |
---|---|
boolean |
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. |