如何使用导航组件在单个片段上正确添加选项菜单,而不会破坏“向上行为”

问题描述 投票:0回答:1

我在单个片段上添加选项菜单时遇到了一些麻烦,因为它打破了导航Up。在这里我的代码

我有一个NoActionBar风格的活动和这个布局

<layout 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:fitsSystemWindows="true"
    tools:context=".ui.MainActivity">

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/white">

        <fragment
            android:id="@+id/mainNavigationFragment"
            android:name="androidx.navigation.fragment.NavHostFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:defaultNavHost="true"
            app:navGraph="@navigation/main_graph" />

        <com.google.android.material.appbar.AppBarLayout
            android:id="@+id/appbarLayout"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:layout_gravity="top">

            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize" />

        </com.google.android.material.appbar.AppBarLayout>

        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomNavigationView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            app:labelVisibilityMode="labeled"
            app:menu="@menu/main_bottom_nav" />

    </androidx.coordinatorlayout.widget.CoordinatorLayout>

</layout>

在活动onCreate我做这个导航设置

private fun setupNavigation() {
        val navController = findNavController(R.id.mainNavigationFragment)

        //each fragment of botton nav
        val appBarConfiguration = AppBarConfiguration(setOf(
                R.id.actionSchedule,
                R.id.actionPayment,
                R.id.actionNotification,
                R.id.actionAccount))

        toolbar.setupWithNavController(navController, appBarConfiguration)
        bottomNavigationView.setupWithNavController(navController)
    }

override fun onSupportNavigateUp() =
            findNavController(R.id.mainNavigationFragment).navigateUp()

在每个botton导航片段我有一些目的地,一切都按预期工作。

现在我需要在botton nav的最右边的片段上添加一个菜单,然后在这个特定的片段上我在onCreate中添加setHasOptionsMenu(true)并在onCreateOptionsMenu中添加膨胀菜单,但菜单没有出现。

然后我在活动setSupportActionBar(toolbar)上添加onCreate

现在菜单只出现在这个片段上,但它打破了任何目的地的所有“UP”(工具栏上的后退箭头)(后面的箭头出现,但是当我没有发生任何事情时)。如果我删除了活动的setSupportActionBar(toolbar),UP再次工作,而不是工具栏菜单。

我需要做些什么来使菜单只在一个片段中工作而不会破坏其他任何东西?谢谢

android android-fragments android-architecture-components android-jetpack android-architecture-navigation
1个回答
2
投票

如果你正在使用setSupportActionBar,你必须根据setupActionBarWithNavController()使用toolbar.setupWithNavController,而不是documentation

© www.soinside.com 2019 - 2024. All rights reserved.