大家都知道android4.4出现了沉浸式状态栏一说,5.0以上则是透明状态栏,其实呢都是透明状态栏。最近公司要求实现的就是有一个viewpager在statusbar底下和design support的DrawerLayout的,也是被这个问题困扰了好一会儿.看了很多网上的文章,还是没有把4.4和5.0的效果统一起来,于是用了一些土方法(大致统一,当然我们知道是不可能完美统一的,4.4的透明状态栏会有一层透明度渐变的遮罩,看起来就是所谓的沉浸式状态栏了)
4.4与5.0的透明状态栏的区别
android4.4的时候
可以通过给window设置属性达到让屏幕延伸到全屏的目的,可以使用以下两种方式:
给activity设置theme:(v-19)
<style name="TranslucentStatus" parent="AppTheme">
<item name="android:windowTranslucentStatus">true</item>
</style>
activity中onCreate的setContentView之前:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS,
WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
}
android5.0的时候
网上的blog对5.0以上的说的比较乱,或者说我没有把大家写的blog思路理清,现在自己来整理一遍:
第一种方法,和4.4的处理一模一样,参考上述代码,效果如下:
这种方式会出现一层遮罩,可能有些小伙伴就不开心了,这黑黑的
莫慌,抱紧我,还有另一种方式,通过java代码:
if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.LOLLIPOP){
Window window = getWindow();
//下面这一行呢是android4.0起推荐大家使用的将布局延伸到状态栏的代码,配合5.0的设置状态栏颜色可谓天作之合
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUND);
window.setStatusBarColor(Color.TRANSPARENT);
}
效果如下:
当然啦,某些小伙伴脑洞打开,于是想利用这样的方式去除4.4设备上的那层渐变的遮罩,于是我这里先做了实验,大家就别费功夫了,这个方式(不能设置状态栏颜色的情况下)的效果如下:
哦豁!很好,有些小伙伴还想起来了有个开源库叫SystemBarTint ,可以设置状态栏颜色,而且恰好是在4.4以上就有效果的,很棒,但是用这个库的第一条件就是开启透明状态栏,这岂不是得先做到上面说的4.4透明状态栏的设置了?但是只要能去除遮罩,这一切都是有回报的
于是我也实验了一遍,在代码中加入了如下设置:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS,
WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
SystemBarTintManager manager = new SystemBarTintManager(this);
manager.setStatusBarTintEnabled(true);
manager.setStatusBarTintColor(Color.TRANSPARENT);
}
很遗憾,这个遮罩很顽强。
做个小结
4.4 利用FLAG_TRANSLUCENT_STATUS
5.0 则有两种方案,喜欢遮罩的参考4.4,不喜欢的参考方式2
很好,通过以上的代码,就可以将布局延伸到状态栏了,那么问题来了,状态栏和布局重叠了怎么办?
问题与解决
关于这个问题,用的最多的就是fitSystemWindows这个属性。给layout设置这个属性,作用是将该layout中的子布局放置在状态栏以下、底部按钮以上的位置。
假如是纯色的状态栏,很简单,给布局外面再套一个ViewGroup,然后给这个viewGroup设置fitSystemWindows属性和colorPrimaryDark颜色背景,这样原先的布局悉数位于正常位置,而本来透明的状态栏底下是colorPrimaryDark颜色而恰好变成我们需要的颜色。
假如不是纯色的状态栏,而是一个ViewPager或者ImageView之类的需要将图片延伸到状态栏底下的情况。那么就是别的需要fitSystemWindows的布局就设置一个,不需要的就不设置了,灵活运用fitSystemWindows。比如下面这个截图:
还有另外一个简单直接的方法:设置paddingTop或者marginTop呀!
android6.0以下statusBar高度是25dp,6.0以上是24dp,给相应布局添加一个paddingTop(或者marginTop)就能完美解决问题,偷懒的话设置个25或者24,不偷懒一点直接判断系统版本再加,如下:
还有一个比较特殊的情况,那就是navigation,也就是design support自带的侧滑,这里要用到一个ScrimInsertsFrameLayout,位于design包,比如我的代码如下:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello world"
android:textSize="30sp" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.internal.ScrimInsetsFrameLayout
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white"
app:insetForeground="#4000">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="24dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello world"
android:textSize="30sp" />
</LinearLayout>
</android.support.design.internal.ScrimInsetsFrameLayout></android.support.v4.widget.DrawerLayout>
5.0是不需要做任何事情的,除了设置状态栏颜色为透明,有的小伙伴说一定要fitSystemWindows啦还有设置windowDrawsSystemBarBackgrounds=true啦之类的,其实是不要的,但是content的根布局一定要设置fitSystemWindows = true。
getWindow().setStatusBarColor(Color.TRANSPARENT);
或者
<item name="android:statusBarColor">@android:color/transparent</item>
效果如下:
当然,4.4还是要加透明状态栏的,参考最开始的步骤,效果如下:
对于ScrimInsetsFrameLayout,有一个属性
app:insetForeground="#4000"
这个属性就是右滑罩在sattusbar上面的那一层颜色,也可以是drawable。有些大神说要重写ScrimInsetsFrameLayout类以使这个属性生效,可是我发现已经生效了,就不重写了。
还有一点呢,就是在ScrimInsetsFrameLayout里设置fitSystemWindows是无效的,想要UI正常,就得设置paddingTop(marginTop),上面两张截图就是给“hello world”设置了的。对于ScrimInsetsFrameLayout的fitSystemWindows这位大神这里做了很详细的分析
相信利用以上方法,小伙伴们一定对android状态栏的设置更加清晰了,可以尽量做到自己希望的效果了。可怜被我利用的android小机器人
这篇文章的相关代码可以在我的github上面找到
本文中所有截图都是android studio自带的虚拟机上的效果截图,欢迎大家提建议吐槽指正。