我如何将选项菜单添加到 NavigationView 的片段
How can i add options menu to fragment from NavigationView
嗨,我遇到了一点点麻烦,我正在尝试将选项菜单添加到我的片段 (VoiceCoiSelectionFragment) 中,我有这个导航图
<?xml version="1.0" encoding="utf-8"?>
<navigation 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:id="@+id/communication_menu_graph"
app:startDestination="@id/commMenuFragment">
<fragment
android:id="@+id/commMenuFragment"
android:name="ca.Whosebug.menu.comm_menu.CommMenuFragment"
android:label="@string/comm_menu_label"
tools:layout="@layout/fragment_comm_menu">
<action
android:id="@+id/action_commMenu_to_voiceCois"
app:destination="@+id/voiceCoi" />
</fragment>
<fragment
android:id="@+id/voiceCoi"
android:name="ca.Whosebug.VoiceCoiSelectionFragment"
android:label="@string/voiceCoi"
tools:layout="@layout/coi_panel" />
</navigation>
点击按钮我有
NavHostFragment.findNavController(this).navigate(CommMenuFragmentDirections.actionCommMenuToVoiceCois())
在我的 VoiceCoiSelectionFragment 中,我尝试将 hasOptionsMenu 添加到 true 而不是在
中膨胀它
@Override
public void onCreateOptionsMenu(@NonNull final Menu menu, @NonNull final MenuInflater inflater)
{
super.onCreateOptionsMenu(menu, inflater);
inflater.inflate(R.menu.saving, menu);
}
我的activity的onCreate包含
NavigationUI.setupWithNavController(_viewBinding.menuAppBar, _navController, menuAppBarConfig);
_viewBinding.menuAppBar.setNavigationIcon(ca.rheinmetall.argus.R.drawable.ic_arrow_back_white_24dp);
_viewBinding.menuAppBar.setNavigationOnClickListener(v -> onBackPressed());
但是它不起作用是不是我遗漏了什么?
片段菜单 API 需要两件事:
您通过正确的主题或使用 setSupportActionBar()
在 activity 级别拥有一个 ActionBar
您在片段的 onCreate()
中调用 setHasOptionsMenu(true)
确保您已完成这两件事。
嗨,我遇到了一点点麻烦,我正在尝试将选项菜单添加到我的片段 (VoiceCoiSelectionFragment) 中,我有这个导航图
<?xml version="1.0" encoding="utf-8"?>
<navigation 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:id="@+id/communication_menu_graph"
app:startDestination="@id/commMenuFragment">
<fragment
android:id="@+id/commMenuFragment"
android:name="ca.Whosebug.menu.comm_menu.CommMenuFragment"
android:label="@string/comm_menu_label"
tools:layout="@layout/fragment_comm_menu">
<action
android:id="@+id/action_commMenu_to_voiceCois"
app:destination="@+id/voiceCoi" />
</fragment>
<fragment
android:id="@+id/voiceCoi"
android:name="ca.Whosebug.VoiceCoiSelectionFragment"
android:label="@string/voiceCoi"
tools:layout="@layout/coi_panel" />
</navigation>
点击按钮我有
NavHostFragment.findNavController(this).navigate(CommMenuFragmentDirections.actionCommMenuToVoiceCois())
在我的 VoiceCoiSelectionFragment 中,我尝试将 hasOptionsMenu 添加到 true 而不是在
中膨胀它 @Override
public void onCreateOptionsMenu(@NonNull final Menu menu, @NonNull final MenuInflater inflater)
{
super.onCreateOptionsMenu(menu, inflater);
inflater.inflate(R.menu.saving, menu);
}
我的activity的onCreate包含
NavigationUI.setupWithNavController(_viewBinding.menuAppBar, _navController, menuAppBarConfig);
_viewBinding.menuAppBar.setNavigationIcon(ca.rheinmetall.argus.R.drawable.ic_arrow_back_white_24dp);
_viewBinding.menuAppBar.setNavigationOnClickListener(v -> onBackPressed());
但是它不起作用是不是我遗漏了什么?
片段菜单 API 需要两件事:
您通过正确的主题或使用
在 activity 级别拥有一个 ActionBarsetSupportActionBar()
您在片段的
中调用onCreate()
setHasOptionsMenu(true)
确保您已完成这两件事。