我有一个活动,其中有一个容器,其中容纳三个不同的片段,每个片段都应更改工具栏的外观和行为。因此,我将工具栏放在每个enter code here
片段中,它们在从一个切换到另一个时无缝地工作,但是当在onCreateOptionsMenu上放大每个片段的菜单时,由于没有一个工具栏是与之相关的主要工具栏,因此未显示它们活动。
override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) {
// Inflate the menu; this adds items to the action bar if it is present.
inflater.inflate(R.menu.dashboard_menu, menu)
this.menu = menu
updateMenuItem(picks_viewpager.currentItem)
}
然后如何将这些菜单添加到每个工具栏中?