gpt4 book ai didi

android - 如何在一项 Activity 中拥有多个 navHostFragment?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:10:23 37 4
gpt4 key购买 nike

我想在一个 Activity 中有三个 navHostFragments,它们都占用相同的空间,但每个都有不同的导航图。然后使用 fragment 管理器和底部导航栏,我想在需要时显示每一个(并隐藏其他的),这样可以保持用户在每个图表中的当前位置。

我目前在尝试在一项 Activity 中使用其中的 3 个时遇到问题,但出现此错误:

/p>

这是我的 xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".FeedActivity">




<androidx.appcompat.widget.Toolbar
android:layout_width="0dp"
android:layout_height="wrap_content"
android:theme="@style/MyActionBar"
android:minHeight="?attr/actionBarSize"
android:id="@+id/my_toolbar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>


<fragment
android:id="@+id/feed_nav_host_fragment"
android:tag="container_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_height="0dp"
app:defaultNavHost="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toTopOf="@+id/feed_bottom_nav"
app:navGraph="@navigation/feed_nav_graph"
android:layout_width="0dp"
app:layout_constraintTop_toBottomOf="@+id/my_toolbar"
/>

<fragment
android:id="@+id/board_nav_host_fragment2"
android:tag="container_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_height="0dp"
app:defaultNavHost="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toTopOf="@+id/feed_bottom_nav"
app:navGraph="@navigation/board_nav_graph"
android:layout_width="0dp"
app:layout_constraintTop_toBottomOf="@+id/my_toolbar"

/>

<fragment
android:id="@+id/profile_nav_host_fragment3"
android:tag="container_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_height="0dp"
app:defaultNavHost="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toTopOf="@+id/feed_bottom_nav"
app:navGraph="@navigation/current_user_profile_nav_graph"
android:layout_width="0dp"
app:layout_constraintTop_toBottomOf="@+id/my_toolbar"

/>


<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/feed_bottom_nav"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:itemBackground="@color/white"
app:itemTextColor="@color/bottom_nav_color"
app:itemIconTint="@color/bottom_nav_color"
app:menu="@menu/navigation"
app:labelVisibilityMode="unlabeled"/>

</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

我建议查看 Google 的 Android 架构组件示例,尤其是 Advanced Navigation Sample因为它展示了如何使用 Navigation 和 BottomNavigationView 处理多个返回堆栈

关于android - 如何在一项 Activity 中拥有多个 navHostFragment?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55454570/

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