|
|
@@ -13,6 +13,7 @@ import kr.co.zumo.app.R;
|
|
|
import kr.co.zumo.app.lifeplus.application.App;
|
|
|
import kr.co.zumo.app.lifeplus.model.SuperModelInit;
|
|
|
import kr.co.zumo.app.lifeplus.model.module.APIModuleHelper;
|
|
|
+import kr.co.zumo.app.lifeplus.view.custom.FullScreenWithKeyBoardLayout;
|
|
|
|
|
|
/**
|
|
|
* Splash 화면
|
|
|
@@ -32,12 +33,15 @@ public class SplashActivity extends ActivityBaseSetup implements ISplashContract
|
|
|
|
|
|
@Override
|
|
|
protected void setup() {
|
|
|
-
|
|
|
- SuperModelInit.instant(App.getInstance().getContext());
|
|
|
-
|
|
|
// for visible loading...
|
|
|
rootView.setVisibility(View.VISIBLE);
|
|
|
|
|
|
+ setContentView(R.layout.activity_splash);
|
|
|
+
|
|
|
+ FullScreenWithKeyBoardLayout.assistActivity(this, () -> {});
|
|
|
+
|
|
|
+ SuperModelInit.instant(App.getInstance().getContext());
|
|
|
+
|
|
|
Log.d("APP# SplashActivity | setup", "|" + "========== setup..............");
|
|
|
|
|
|
presenter = new SplashPresenter(new SplashModel(), this);
|