我正在主要活动中尝试使用新的Android Bottom App Bar实施Jetpack Navigation,但它不能正常工作。
我已经阅读了有关导航的说明,但似乎没有找到将导航jetpack集成到新的底部应用栏中的方法。我尝试按照以下方式进行操作:
<androidx.constraintlayout.widget.ConstraintLayout
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"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:backgroundTint="@color/colorPrimary"
app:fabAlignmentMode="center"
app:fabAttached="true"
app:navigationIcon="@drawable/baseline_menu_white_24"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/baseline_add_white_24"
app:layout_anchor="@id/bottom_app_bar" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
导航文件为:
<navigation
android:id="@+id/navigation_graph.xml"
app:startDestination="@id/fragmentStart">
<fragment
android:id="@+id/fragmentStart"
android:name="com.FragmentStart">
<action
android:id="@+id/goToFragment"
app:destination="@id/fragmentToGoTo" />
</fragment>
<fragment
android:id="@+id/fragmentToGoTo"
android:name="com.FragmentToGoTo"
/>
</navigation>
然后在我的活动中使用:
val navController = Navigation.findNavController(this, R.id.navigation_fragment)
myBottomBar.replaceMenu(R.menu.menu_with_nav_item)
myBottomBar.setupWithNavController(navController)
//or I've also tried
//NavigationUI.setupWithNavController(myBottomBar, navController, null)
发生的事情是,当单击菜单项时,导航不会触发,并且根据我的阅读,如果菜单项的ID与导航图中的片段相同,则它应该可以直接工作。
请提供一个链接或一些代码来帮助您完成这项工作,请帮忙吗?
答案 0 :(得分:0)
setupWithNavController
(或Toolbar
之类的子类)上的BottomAppBar
仅设置“向上”图标和标题-它们不连接添加到工具栏的菜单项。
根据Tie destinations to menu items documentation,您必须设置自己的侦听器并调用onNavDestinationSelected()。对于BottomAppBar
,可以通过设置Toolbar.OnMenuItemClickListener
来完成:
val navController = Navigation.findNavController(this, R.id.navigation_fragment)
myBottomBar.replaceMenu(R.menu.menu_with_nav_item)
myBottomBar.setupWithNavController(navController)
// Connect MenuItems to the NavController
myBottomBar.setOnMenuItemClickListener { menuItem ->
menuItem.onNavDestinationSelected(navController)
}