如何在 Android 中的 navigationView 上显示 activity 或片段?
How to display an activity or fragment on navigationView in Android?
在 Swift 中,我们可以使用名为 "SideMenu" 的库在侧边菜单上显示 viewController。
现在,我正在 Android 编码。我想在 NavigationView 中显示 activity 我们只能显示一个 Menu 或 header。
我无法在 NavigationView 上显示 activity 或片段。
你能帮我解决这个问题吗?
ANDROID STUDIO NAVIGATION VIEW
XCODE SWIFT SIDE MENU
Android 应用程序可以一次显示一个 activity(它最近发生了变化,但在您的场景中仍然如此)。在您的情况下,您应该膨胀视图或片段。只需将您的布局或片段放入 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"
如果您使用的是 android 导航组件,您可以看到实现此目的的完整详细信息,并将片段替换为对应于用户 clicks/choices drawer layout with navigation component
如果您没有使用 android 导航组件而只是使用抽屉布局,您可以看到这个 drawer layout
在 Swift 中,我们可以使用名为 "SideMenu" 的库在侧边菜单上显示 viewController。
现在,我正在 Android 编码。我想在 NavigationView 中显示 activity 我们只能显示一个 Menu 或 header。 我无法在 NavigationView 上显示 activity 或片段。
你能帮我解决这个问题吗?
ANDROID STUDIO NAVIGATION VIEW
XCODE SWIFT SIDE MENU
Android 应用程序可以一次显示一个 activity(它最近发生了变化,但在您的场景中仍然如此)。在您的情况下,您应该膨胀视图或片段。只需将您的布局或片段放入 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"
如果您使用的是 android 导航组件,您可以看到实现此目的的完整详细信息,并将片段替换为对应于用户 clicks/choices drawer layout with navigation component
如果您没有使用 android 导航组件而只是使用抽屉布局,您可以看到这个 drawer layout