我试图在我的主要活动中使用新的Android底部应用程序栏实现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,则应直接工作。
您可以通过提供链接或有关如何使此工作的链接或一些代码提供帮助?
Toolbar
上的setupWithNavController
(或BottomAppBar
之类的子类(仅设置UP ICON和标题 - 它们不会连接到工具栏上的菜单项。
根据菜单项文档的领带目的地,您必须设置自己的侦听器并致电OnnavDestinationsEletectectectectectectectection((。对于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)
}