如何在项目以简单片段开始并使用底部导航导航到页面的情况下使用 Jetpack 导航?
How to use jetpack navigation where project starts with simple fragments and navigate to page with bottomnavigation?
据我了解单曲activity
应该有自己的单曲navigationHostFragment
。例如,我检查过的样本如果样本有 BottomNavigationView
,activity 的 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。不知道我的Activityxml应该是什么样子?我可以创建导航图,但我不知道 activity 的 xml 应该是什么样子?
我通过观看这些视频找到了解决方案
如果您需要实现高级导航,强烈建议观看此视频
https://www.pluralsight.com/courses/android-navigation-architecture-components-getting-started
据我了解单曲activity
应该有自己的单曲navigationHostFragment
。例如,我检查过的样本如果样本有 BottomNavigationView
,activity 的 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。不知道我的Activityxml应该是什么样子?我可以创建导航图,但我不知道 activity 的 xml 应该是什么样子?
我通过观看这些视频找到了解决方案 如果您需要实现高级导航,强烈建议观看此视频 https://www.pluralsight.com/courses/android-navigation-architecture-components-getting-started