一键登录 loading hide 2

This commit is contained in:
2025-12-25 15:31:49 +08:00
parent ff9677fa6d
commit e3751528ad

View File

@@ -190,6 +190,13 @@ public class LaunchPageActivity extends BaseMvpActivity<IPresenter, ActivityLaun
private void setEnter() {
if (!isCheck) {
if (videoView != null) {
if (videoView.isPlaying()){
videoView.stopPlayback();
videoView = null;
}
}
startActivity(new Intent(this, PasswordLoginActivity.class));
finish();
isCheck = true;
@@ -351,10 +358,11 @@ public class LaunchPageActivity extends BaseMvpActivity<IPresenter, ActivityLaun
if (videoView.isPlaying()){
videoView.stopPlayback();
videoView = null;
startActivity(new Intent(this, PasswordLoginActivity.class));
finish();
}
}
startActivity(new Intent(this, PasswordLoginActivity.class));
finish();
}
@Override