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