如何使用喷气背包导航,其中项目从简单片段开始,并使用底部导航导航到页面



据我了解,单个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

相关内容

  • 没有找到相关文章

最新更新