关于沉浸式状态栏相信大家都不陌生,IOS系统很早就有,android5.0及以后版本都支持给状态栏着色,而目前android主流版本还是4.4,网上通用实现4.4(API19)沉浸式状态栏也都是依赖于可以将状态栏变为透明的属性,再为其着色,主要实现代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_match_actionbar); //只对api19以上版本有效 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { setTranslucentStatus(true); } //为状态栏着色 SystemBarTintManager tintManager = new SystemBarTintManager(this); tintManager.setStatusBarTintEnabled(true); tintManager.setStatusBarTintResource(R.color.statusbar_bg); } @TargetApi(19) private void setTranslucentStatus(boolean on) { Window win = getWindow(); WindowManager.LayoutParams winParams = win.getAttributes(); final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS; if (on) { winParams.flags |= bits; } else { winParams.flags &= ~bits; } win.setAttributes(winParams); } |
再在根布局添加以下两个属性:
1 2 |
android:fitsSystemWindows="true" android:clipToPadding="false" |
这样就可以了,以上着色使用了SystemBarTint。
为什么我要寻找其他的方案?
面对大多数的界面自然是没有多大问题,但是针对类似QQ这种侧滑的界面,如图:
我的手机系统版本是4.4的,如果想做成QQ侧滑背景这样的效果,使用上面的方案就变成了这样
这样出来的效果就会很丑,于是才有了改进版的方案,不知QQ是否是这样做的。
除了上述的缺陷以外,还有一点看着不是很舒服,就是当我使用抽屉菜单或者滑动返回效果的时候是这样的
我想要的效果是这样的
第一种思路
自定义一个状态栏,不能添加“ android:fitsSystemWindows=”true”
”这个属性,不然无法填充到状态栏,如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/colorAccent" android:orientation="vertical"> <View android:id="@+id/status_bar" android:layout_width="match_parent" android:layout_height="20dp"/> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent"/> </LinearLayout> |
在到代码中判断
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 crayon-striped-num" data-line="crayon-5812c1017c689641250321-16">16 17 18 19 20 iv id="crayon-5812c1017c66c589029748" class="crayon-syntax crayon-theme-github crayon-font-monaco crayon-os-pc print-yes notranslate" data-settings=" minimize scroll-always" style=" margin-top: 12px; margin-bottom: 12px; font-size: 13px !important; line-height: 15px !important;">
再在根布局添加以下两个属性:
这样就可以了,以上着色使用了SystemBarTint。 为什么我要寻找其他的方案?面对大多数的界面自然是没有多大问题,但是针对类似QQ这种侧滑的界面,如图: Screenshot_2015-12-30-09-55-33.png
我的手机系统版本是4.4的,如果想做成QQ侧滑背景这样的效果,使用上面的方案就变成了这样 Screenshot_2015-12-30-09-55-34.png
这样出来的效果就会很丑,于是才有了改进版的方案,不知QQ是否是这样做的。 状态栏并没有阴影效果
我想要的效果是这样的 状态栏也会跟着一起滑动
第一种思路自定义一个状态栏,不能添加“ android:fitsSystemWindows=”true”
在到代码中判断
|