gpt4 book ai didi

android - 根据显示的 fragment 替换工具栏布局

转载 作者:IT老高 更新时间:2023-10-28 23:03:53 29 4
gpt4 key购买 nike

我有一个带有抽屉导航的 Activity ,它替换了 Activity 上的 main_fragment_container。当显示其中一个 fragment 时,我想更改工具栏的布局并为其添加一个微调器(并在 fragment 隐藏时将其删除)。

我的布局是这样的:

<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>

最佳答案

不确定您要完成什么,但我认为,如果可能,您应该通过让 fragment 自定义您的工具栏而不是替换它来解决此问题。您可以根据需要让 fragment 在工具栏上隐藏/显示 View 。

在 fragment OnCreateView()中添加setHasOptionsMenu(true);,然后覆盖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) findViewById(R.id.toolbar);

关于android - 根据显示的 fragment 替换工具栏布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26987503/

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