gpt4 book ai didi

android - 工具栏下方的抽屉导航

转载 作者:IT老高 更新时间:2023-10-28 13:23:52 24 4
gpt4 key购买 nike

我正在尝试让抽屉导航在工具栏下方打开。

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drawer_layout"
tools:context=".MainActivity">
<RelativeLayout
android:layout_width = "match_parent"
android:layout_height = "wrap_content">
<include layout="@layout/toolbar"
android:id="@+id/toolbar"/>
<FrameLayout
android:layout_below="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color"/>
</RelativeLayout>
<ListView
android:id="@+id/drawer"
android:layout_width="260dp"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
android:layout_marginTop="56dp"
android:layout_gravity="start">
</ListView>
</android.support.v4.widget.DrawerLayout>

如何重新格式化 xml,以便在工具栏下方打开导航栏?

最佳答案

您应该将 DrawerLayout 移动为顶级父级,并将 Toolbar 移出 DrawerLayout 内容容器。简而言之,这看起来像:

RelativeLayout
----Toolbar
----DrawerLayout
---ContentView
---DrawerList

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/top_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar">

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color" />

<ListView
android:id="@+id/drawer"
android:layout_width="260dp"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
android:layout_gravity="start"
android:layout_marginTop="56dp" />

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

然而,Material Design 指南规定 Navigation Drawer 应位于 Toolbar 上方。

关于android - 工具栏下方的抽屉导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26985270/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com