我有一个带导航抽屉的活动,它取代了活动上的main_fragment_container。 当显示其中一个片段时,我想更改工具栏的布局并为其添加一个微调器(并在隐藏片段时将其删除)。
我的布局如下:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:sothree="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_parent_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
sothree:theme="@style/AppTheme.ActionBar" />
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Main layout -->
<FrameLayout
android:id="@+id/main_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- Nav drawer -->
<fragment
android:id="@+id/fragment_drawer"
android:name="com.idob.mysoccer.ui.DrawerFragment"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="left|start" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:43)
不确定您要完成什么,但我认为,如果可能的话,您应该通过让片段自定义工具栏而不是替换它来实现此目的。您可以根据需要让片段隐藏/显示工具栏上的视图。
在片段setHasOptionsMenu(true);
中添加OnCreateView()
,然后覆盖onOptionsMenuCreated()
像这样:
@Override
public View onCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
setHasOptionsMenu(true);
return inflater.inflate(R.layout.result_list, container, false);
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.this_frag_menu, menu);
super.onCreateOptionsMenu(menu, inflater);
}
如果您需要使用工具栏执行更多特定操作,可以使用
获取实例 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
答案 1 :(得分:0)
J.G.Sebring 的上述答案(接受的答案)有效,但它同时保留了 optionsMenu。上一个和新的。要保留为片段创建的新菜单,您可以添加 menu.clear()
override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) {
menu.clear()
inflater.inflate(R.menu.settings_menu, menu)
super.onCreateOptionsMenu(menu, inflater)
}