We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// 视频播放状态监听 private OnInfoListener mInfoListener = new OnInfoListener() { @OverRide public boolean onInfo(IMediaPlayer iMediaPlayer, int status, int extra) { _switchStatus(status); if (mOutsideInfoListener != null) { mOutsideInfoListener.onInfo(iMediaPlayer, status, extra); } return true; } }; 这个onInfo回调在网络断开重新连接后会不断调用,日志打印看了下status值是334、701、702、334、331按这个顺序不断打印,希望能修复
The text was updated successfully, but these errors were encountered:
No branches or pull requests
// 视频播放状态监听
private OnInfoListener mInfoListener = new OnInfoListener() {
@OverRide
public boolean onInfo(IMediaPlayer iMediaPlayer, int status, int extra) {
_switchStatus(status);
if (mOutsideInfoListener != null) {
mOutsideInfoListener.onInfo(iMediaPlayer, status, extra);
}
return true;
}
};
这个onInfo回调在网络断开重新连接后会不断调用,日志打印看了下status值是334、701、702、334、331按这个顺序不断打印,希望能修复
The text was updated successfully, but these errors were encountered: