据我了解,单个activity
应该有自己的单个navigationHostFragment
。例如,我检查的示例是否BottomNavigationView
活动的xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/nav_host_container"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/color_black"
android:layout_weight="1" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_nav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:itemIconTint="@color/color_white"
app:itemTextColor="@color/color_white"
app:menu="@menu/bottom_nav"/>
</LinearLayout>
//and the samples where it is simple fragments naivgation it looks simple
<FrameLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light"
tools:context="com.example.android.navigationsample.MainActivity">
<fragment
android:id="@+id/my_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/navigation"/>
</FrameLayout>
现在我正在发火,如果我有一个以 SetupFragment 开头的项目,那么如果用户未登录,则应导航到 LoginFragment或到具有BottomNavigationView
的主页片段。我不知道我的活动 xml 应该是什么样子?我可以创建导航图,但我不知道我的活动的 xml 应该是什么样子?
我通过观看这些视频找到了解决方案如果您需要实现高级导航,强烈建议观看此内容https://www.pluralsight.com/courses/android-navigation-architecture-components-getting-started