gpt4 book ai didi

android - 使用新的 Android BottomAppBar 实现 Android Jetpack Navigation 组件

转载 作者:行者123 更新时间:2023-11-29 23:08:48 30 4
gpt4 key购买 nike

我正在尝试在我的主要 Activity 中使用新的 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>

然后在我的 Activity 中我使用:

    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)

发生的情况是,当单击菜单项时,导航不会触发,根据我的阅读,如果菜单条目与导航图中的 fragment 具有相同的 id,它应该可以直接工作。

能否请您提供一个链接或一些代码来帮助您完成这项工作?

最佳答案

Toolbar(或 BottomAppBar 等子类)上的

setupWithNavController 仅设置向上图标和标题 - 它们不连接菜单添加到工具栏的项目。

根据 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)
}

关于android - 使用新的 Android BottomAppBar 实现 Android Jetpack Navigation 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56261587/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com