如何防止AppBarLayout落后于状态栏?

时间:2016-08-19 11:36:07

标签: android

AppBarLayout落后于状态栏。我做了半透明的导航栏。如果我使用fitSystemWindow,则内容不会显示在导航栏下方。我想保留导航栏下方的内容,并将AppBarLayout设置为状态栏

<?xml version="1.0" encoding="utf-8"?>
<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/fragment_main_drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/fragment_main_toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:title="@string/app_name"
                app:layout_scrollFlags="scroll|enterAlways"
                app:titleTextColor="@android:color/white"/>

            <android.support.design.widget.TabLayout
                android:id="@+id/fragment_main_tab_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="?attr/actionBarSize"
                app:tabBackground="@android:color/white"
                app:tabGravity="fill"
                app:tabIndicatorColor="@color/colorPrimary"
                app:tabMaxWidth="0dp"
                app:tabSelectedTextColor="@color/colorPrimary"
                app:tabTextColor="@color/tab_unselected">

            </android.support.design.widget.TabLayout>

        </android.support.design.widget.AppBarLayout>

        <android.support.v4.view.ViewPager
            android:id="@+id/fragment_main_view_pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

        </android.support.v4.view.ViewPager>

    </android.support.design.widget.CoordinatorLayout>

    <android.support.design.widget.NavigationView
        android:layout_width="280dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/colorPrimary">
        <ImageView
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:layout_gravity="bottom|right"
            android:src="@drawable/navbar_bottom"/>

    </android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>

2 个答案:

答案 0 :(得分:0)

尝试将此添加到您的CoordinatorLayout

android:fitsSystemWindows="true"
  

格式:布尔值

     

布尔内部属性,用于根据系统调整视图布局   窗口,如状态栏。如果为true,则调整此填充   查看为系统窗口留出空间。只有在生效时才会生效   此视图处于非嵌入式活动中。

答案 1 :(得分:0)

您应将android:fitsSystemWindows =“ true”设置为顶层布局(在本例中为DrawerLayout)