Android如何实现5.0以上图片沉浸式状态栏

Posted 码上夏雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android如何实现5.0以上图片沉浸式状态栏相关的知识,希望对你有一定的参考价值。

android如何实现5.0以上图片沉浸式状态栏

1. 设置Theme

<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
	<item name="android:windowTranslucentNavigation">false</item>
	<item name="android:windowTranslucentStatus">false</item>
	<item name="android:statusBarColor">@android:color/transparent</item>
</style>

2.设置最外层布局

注意外层布局必须为CoordinatorLayout,其他布局会有问题,且必须设置android:fitsSystemWindows为true,下面的imageView为要沉浸的布局,必须为imageView,其他布局可能会有错,且必须设置android:fitsSystemWindows为true,这样,一个沉浸式的布局就好了

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:background="@drawable/m_maker_home_top_bg"
        />
	<include layout="@layout/your_layout" />
</android.support.design.widget.CoordinatorLayout>

以上是关于Android如何实现5.0以上图片沉浸式状态栏的主要内容,如果未能解决你的问题,请参考以下文章

Android 沉浸式状态栏

如何实现Android沉浸式状态栏

Android沉浸式状态栏

Android沉浸式状态栏

android -------- 沉浸式状态栏和沉浸式导航栏(ImmersionBar)

安卓沉浸式状态栏