codingmancui

Results 1 comments of codingmancui

> StatusBarUtil.setLightMode(this);该方法里少了个View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN flag, > 不要调用这个方法,改为如下两行 > `StatusBarUtil.setTranslucentForImageViewInFragment(MainActivity.this, 0, null); getActivity().getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);` > 搞定 也是无效的