沉浸式对我们来说是和熟悉了,项目中已经很成熟了,之前一直没整理关于沉浸式的东西,今天整理了下,以后基本可以直接用到项目里了。
android:windowTranslucentStatus
这一属性,设置为true则状态栏变透明(4.4以上手机),如果不做任何处理,标题栏会将状态栏覆盖,显示出现混乱。
android:fitsSystemWindows
这一属性。设置为true让Activity 中setContentView
的布局不覆盖状态栏(即相当于给状态栏设置了padding),这个属性要在根布局中使用,如果同时设置了
<item name="android:windowTranslucentStatus">true</item> <item name="android:fitsSystemWindows">true</item>
则状态栏透明,标题栏不会覆盖状态栏。
如果不考虑兼容4.4可以直接在5.0 以上直接通过style.xml
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>设置状态栏颜色,如果考虑兼容4.4则还需在style.xml 中设置
<item name="android:windowTranslucentStatus">true</item>让状态栏透明。然后在状态栏放一个view,长在4.4以上为25dp,以下为0dp,宽为match_parent,背景色设置为colorPrimaryDark(或者其他你想状态栏显示的颜色)。
具体方案
自己写一个标题栏的layout布局(以后用都可以include引用),在该布局中添加如下代码
<View android:layout_width="match_parent"
android:background="@color/colorPrimaryDark"
android:layout_height="@dimen/toolbar_padding_top"/>
这个用来填充状态栏,如果想设置半透明等效果可以放张ImageView图片。
高度引用在4.4以上为25dp,以下为0dp。
所以只需要在res下新建一个values-v19包添加styles和dimens两个xml文件
//styles.xml里加上
<item name="android:windowTranslucentStatus">true</item>
//dimens里加上
<dimen name="toolbar_padding_top">25dp</dimen>
然后在需要标题栏的地方include标题栏布局文件,不需要的地方通过android:windowTranslucentStatus
和android:fitsSystemWindows
两个属性设置即可以满足日常开发需求。
希望可以帮到跟多码农