Android代码里遇到的问题:Android沉浸式状态栏,状态栏管理

使用 :implementation  'com.jaeger.statusbarutil:library:1.5.1'

StatusBarUtil.setTranslucentForImageView(this, 0, null);//Activity里设置

StatusBarUtil.setTranslucentForImageViewInFragment(this, 0, null);//Fragment里设置

注意:布局里不需要设置android:fitsSystemWindows="true",否则没有效果。

不要忘记了, 在当前activity onCreate中设置 取消padding, 因为这个padding 我们用代码实现了,不需要系统帮我们设置了。

StatusBarUtil.setRootViewFitsSystemWindows(this,false);

协调者布局 CoordinatorLayout:

AppBarLayout onOffsetChanged回调里滑动,根据滑动百分比设置 ToolBar的显示和隐藏来动画缩放ToolBar,并且根据百分比设置状态栏背景颜色以及文字的颜色。

StatusBarUtil.setLightMode(this);//状态栏文字设置为黑色

StatusBarUtil.setDarkMode(this);//状态栏文字设置为白色

你可能感兴趣的:(Android代码里遇到的问题:Android沉浸式状态栏,状态栏管理)