gpt4 book ai didi

android - 如何在 Android 中的 navigationView 上显示 Activity 或 fragment ?

转载 作者:行者123 更新时间:2023-11-29 00:52:06 25 4
gpt4 key购买 nike

在 Swift 中,我们可以使用一个名为“SideMenu”的库来在 SideMenu 上显示一个 viewController。

现在,我正在使用 Android 编写代码。我想在 NavigationView 中显示 Activity ,我们只能显示菜单或标题。我无法在 NavigationView 上显示 Activity 或 fragment 。

关于这个问题,你能帮我或给我一些建议吗?

ANDROID STUDIO NAVIGATION VIEW

XCODE SWIFT SIDE MENU

最佳答案

Android 应用程序可以一次显示一个 Activity (它最近发生了变化,但在您的场景中仍然如此)。在您的情况下,您应该膨胀 View 或 fragment 。只需将您的布局或 fragment 放在 NavigationView 中:

<?xml version="1.0" encoding="utf-8"?>
<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">

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

<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"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer">

<TextView
android:text="Custom View"
android:layout_gravity="center"
android:background="#ff0000"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

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

</androidx.drawerlayout.widget.DrawerLayout>

NavigationView 扩展了 FrameLayout,因此如果您要展开菜单,它将重叠。因此,您可能想要删除:

app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer"

enter image description here

关于android - 如何在 Android 中的 navigationView 上显示 Activity 或 fragment ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58415151/

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