gpt4 book ai didi

java - 如何将底部导航与抽屉导航一起使用

转载 作者:行者123 更新时间:2023-12-02 05:01:09 25 4
gpt4 key购买 nike

我正在尝试添加带有底部导航 View 的抽屉导航。我对所有底部导航 View fragment 都有全屏 Activity 。我的左上角有应用程序图标。我想在用户单击该图标时打开抽屉导航。那么我该如何实现呢?

我尝试使用 DrawerLayout。但它包括工具栏。我尝试通过单击抽屉导航的项目来打开新的 Activity ,但它给出了 IllegleStateException。

最佳答案

我在下面分享了以下代码。您必须将抽屉导航的汉堡菜单图标放在工具栏中,并将导航 View 放在抽屉布局内,该导航 View 有一个要以编程方式填充的 subview (ListView,RecyclerView,ExpandableListView等),或者您可以通过设置导航 View 中的静态项目导航 View 中的菜单。希望有帮助。如果您还有任何疑问,请询问。

<androidx.drawerlayout.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="true"
tools:openDrawer="start">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorActivityBackground"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:layoutDirection="locale"
android:orientation="vertical"
android:textDirection="locale">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.appcompat.widget.Toolbar
android:id="@+id/topbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
app:contentInsetEnd="0dp"
app:contentInsetLeft="0dp"
app:contentInsetRight="0dp"
app:contentInsetStart="0dp"/>
</RelativeLayout>
</FrameLayout>

<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:maxWidth="320dp">

<ExpandableListView
android:id="@+id/navList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
android:background="@color/white"
android:groupIndicator="@null" />

</com.google.android.material.navigation.NavigationView>

</androidx.drawerlayout.widget.DrawerLayout>

关于java - 如何将底部导航与抽屉导航一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56385209/

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