如何在状态栏后面制作导航抽屉全屏和标题图像?

时间:2016-02-04 14:27:42

标签: android material-design statusbar drawerlayout

在我的RecyclerView和DrawerLayout中,我设置了fitsSystemWindows="true"。另外,我将android:windowTranslucentStatus="true"放入v21/styles.xml。我已经测试了所有内容,这些都是在旧的问题和答案中提出的,但它们都没有在我的应用程序中运行。

DrawerLayout

我正在使用Nexus 5,并尝试了一切来修复它。图像从状态栏开始。如何将图像放在状态栏后面?

我不知道为什么它没有显示父布局,widget.DrawerLayout。

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="16dp"
android:fitsSystemWindows="true"
tools:context=".activities.MainActivity">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:elevation="0dp"
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme.AppBarOverlay"
        app:elevation="0dp">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <FrameLayout
        android:id="@+id/frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">

    </FrameLayout>

</LinearLayout>

<android.support.v7.widget.RecyclerView
    android:id="@+id/recyclerViewActivity_Main"
    android:layout_width="304dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@color/colorWhite"
    android:clickable="true"
    android:fitsSystemWindows="true"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:scrollbars="vertical" />

0 个答案:

没有答案