在我的应用程序中,我想显示底部选项卡,当单击这些选项卡时显示一个fragment
。
为此,我使用BottomNavigationView
和NavigationUI
组件来显示片段
我的 XML 代码:
<fragment
android:id="@+id/homePage_fragmentNavHost"
android:name="androidx.navigation.fragment.NavHostFragment"
app:navGraph="@navigation/home_navigator"
app:defaultNavHost="true"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toTopOf="@+id/homePage_bottomNavBar"
app:layout_constraintTop_toBottomOf="@+id/homePage_toolbar"/>
<!--Bottom menu-->
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/homePage_bottomNavBar"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:background="?android:attr/windowBackground"
app:menu="@menu/menu_home_navigation"
app:labelVisibilityMode="selected"
app:itemTextAppearanceActive="@style/BottomNavigationView.Active"
app:itemTextAppearanceInactive="@style/BottomNavigationView"
app:itemTextColor="@color/bottom_nav_bar_colors"
app:itemIconTint="@color/bottom_nav_bar_colors"/>
我写了下面的代码,用于连接NavigationUi
和BottomNavigationView
:
private fun setupNavigation() {
val navController = Navigation.findNavController(this, R.id.homePage_fragmentNavHost)
NavigationUI.setupWithNavController(homePage_bottomNavBar, navController)
}
override fun onSupportNavigateUp() = Navigation.findNavController(this, R.id.homePage_fragmentNavHost).navigateUp()
但始终显示默认选项卡的项目 0。
我想写条件并检查一个值,并用这个值设置这个和的默认选项卡。NavigationUi
BottomNavigationView
我该怎么做?