如何使导航栏出现在操作栏下方

时间:2018-03-31 11:31:09

标签: android layout android-actionbar navbar

我一直在努力让我的导航抽屉显示在操作栏下方。我知道它可能不符合设计指南。 我已经访问了其他几个关于这个主题的线程(例如:Navigation drawer below Actionbar),但这并没有解决我的问题。

经过大量的修修补补后,我没有进一步深入。请帮助解决这个问题。

现状: https://i.stack.imgur.com/HK1qW.png

布局/ activity_spellbook.xml

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <android.support.v4.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        tools:openDrawer="start">

        <include
            layout="@layout/app_bar_spellbook"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="left|start"
            android:fitsSystemWindows="false"
            app:headerLayout="@layout/nav_header_spellbook"
            app:menu="@menu/activity_spellbook_drawer" />

    </android.support.v4.widget.DrawerLayout>
</FrameLayout>

2 个答案:

答案 0 :(得分:0)

只需将应用栏置于外的DrawerLayout

<强>代码:

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto">

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="left|start"
        android:fitsSystemWindows="false"
        app:headerLayout="@layout/nav_header_spellbook"
        app:menu="@menu/activity_spellbook_drawer" />

</android.support.v4.widget.DrawerLayout>
    <include
        layout="@layout/app_bar_spellbook"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

答案 1 :(得分:0)

您必须对以下所有文件进行一些更改:

抽屉布局:

<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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="false"
tools:openDrawer="start">

   <include
    layout="@layout/app_bar_main2"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:layout_marginTop="?attr/actionBarSize"
    app:headerLayout="@layout/nav_header_main2"
    app:menu="@menu/activity_main2_drawer" />

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

现在,在AppBarLayout中,它存在于主类(或你写的地方)

 <android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.PopupOverlay">

    <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>

现在,最后在Manifest File中将主题添加到您的活动中:

android:theme="@style/Theme.AppCompat.Light.NoActionBar"