如何在项目以简单片段开始并使用bottomnavigation导航到页面的地方使用jetpack导航?

时间:2019-07-23 11:30:54

标签: android android-jetpack android-jetpack-navigation

据我了解,单个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的homeFragment。我不知道我的Activity xml应该是什么样子?我可以创建导航图,但是我不知道活动的xml应该是什么样子?

1 个答案:

答案 0 :(得分:1)

我找到了观看这些视频的解决方案 如果需要实施高级导航,强烈建议您观看 https://www.pluralsight.com/courses/android-navigation-architecture-components-getting-started