据我了解 singleactivity
应该有它自己的 single 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
. 我不知道我的 Activity xml 应该是什么样子?我可以创建导航图,但我不知道我的活动的 xml 应该是什么样子?