|
|
@@ -27,6 +27,7 @@ import kr.co.zumo.app.lifeplus.model.SuperModel;
|
|
|
import kr.co.zumo.app.lifeplus.supervisor.FragmentSkipBackChanger;
|
|
|
import kr.co.zumo.app.lifeplus.supervisor.ScreenChanger;
|
|
|
import kr.co.zumo.app.lifeplus.supervisor.ScreenID;
|
|
|
+import kr.co.zumo.app.lifeplus.util.ResourceUtil;
|
|
|
import kr.co.zumo.app.lifeplus.view.screen.FragmentBase;
|
|
|
import kr.co.zumo.app.lifeplus.view.screen.factory.BasicFragmentFactory;
|
|
|
import kr.co.zumo.app.lifeplus.view.screen.factory.FragmentFactory;
|
|
|
@@ -74,7 +75,13 @@ public abstract class ActivityBase extends AppCompatActivity {
|
|
|
Log.w("APP# ActivityBase | onCreate", "| >> " + this.getClass().getSimpleName() + " HC: " + this.hashCode());
|
|
|
if (hasLayout()) {
|
|
|
setContentView(R.layout.activity_main);
|
|
|
-
|
|
|
+ findViewById(R.id.layout_app_bar).setPadding(0, ResourceUtil.getStatusBarHeight(), 0,0);
|
|
|
+// CoordinatorLayout.LayoutParams params = new CoordinatorLayout.LayoutParams(
|
|
|
+// CoordinatorLayout.LayoutParams.MATCH_PARENT,
|
|
|
+// CoordinatorLayout.LayoutParams.MATCH_PARENT
|
|
|
+// );
|
|
|
+// params.setMargins(0, ResourceUtil.getStatusBarHeight(),0 , 0);
|
|
|
+// findViewById(R.id.layout_app_bar).setLayoutParams(params);
|
|
|
/*
|
|
|
setting helpers
|
|
|
*/
|