美文网首页APP & program
Android如何实现5.0以上图片沉浸式状态栏

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

作者: 河马过河 | 来源:发表于2021-06-10 16:11 被阅读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>

来源:https://www.jianshu.com/p/24125c7e458b

相关文章

网友评论

    本文标题:Android如何实现5.0以上图片沉浸式状态栏

    本文链接:https://www.haomeiwen.com/subject/qztpeltx.html