关播页面

This commit is contained in:
18401019693 2022-10-29 15:08:44 +08:00
parent 6efd2898d7
commit c440b58981

View File

@ -81,9 +81,15 @@ public class LiveFloatView implements Function1<FloatCallbacks.Builder, Unit> {
}
});
ViewClicksAntiShake.clicksAntiShake(videoView, () -> {
if (mPlayer != null && mPlayer.isPlaying() == 1) {
mPlayer.stopPlay();
APPEasyFloat.getInstance().dismiss(mContext);
} else if (mPlayer != null) {
mPlayer.stopPlay();
APPEasyFloat.getInstance().dismiss(mContext);
RouteUtil.forwardLiveAudienceActivity(mLiveBean, mLiveType, mLiveSDK, mLiveTypeVal);
}
});
}
@ -177,8 +183,14 @@ public class LiveFloatView implements Function1<FloatCallbacks.Builder, Unit> {
}
});
ViewClicksAntiShake.clicksAntiShake(videoView, () -> {
if (mPlayer != null && mPlayer.isPlaying() == 1) {
mPlayer.stopPlay();
EasyFloat.dismiss("LiveFloatView", true);
} else if (mPlayer != null) {
mPlayer.stopPlay();
RouteUtil.forwardLiveAudienceActivity(mLiveBean, mLiveType, mLiveSDK, mLiveTypeVal);
}
});
}
}