gpt4 book ai didi

android - 子 fragment 替换父 fragment 根布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:47:30 26 4
gpt4 key购买 nike

我有 5 个 fragment 的 viewpager,在其中一个 fragment 中,我想通过单击按钮完全替换它。我还希望能够通过后退按钮隐藏子 fragment 。这是这个 fragment 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/contacts_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null">
<LinearLayout
android:id="@+id/import_contacts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

<include layout="@layout/listview_filter"/>

<Button
android:id="@+id/btn_my_clusters"
android:background="@drawable/btn_wide_arrow_bg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="@color/TEXT"
android:text="@string/btn_my_clusters_text"
android:layout_marginBottom="10dp"/>

<ProgressBar
android:id="@+id/progress_bar"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:layout_gravity="center"/>

<ListView
android:id="@+id/contacts_list"
android:divider="@null"
android:listSelector="@android:color/transparent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone"/>
</LinearLayout>

当我尝试像这样替换 contacts_layout 时:

ImportContactsFragment importContactsFragment = new  ImportContactsFragment();
FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
transaction.addToBackStack(null);
transaction.replace(R.id.contacts_layout, importContactsFragment).commit();

它不起作用(我的意思是没有错误,但我的 ImportContactsFragment 根本没有显示)。但是当我尝试像这样替换 import_contacts View 时:

ImportContactsFragment importContactsFragment = new  ImportContactsFragment();
FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
transaction.addToBackStack(null);
transaction.replace(R.id.import_contacts, importContactsFragment).commit();

一切正常,显示 ImportContactsFragment。

所以我想知道是否可以用子 fragment 替换所有 fragment 内容?也许我可以用其他方式做到这一点?

最佳答案

replace 事务不会从目标布局容器中删除当前 View ,因此当您使用第一段代码时,新的 Fragment 会添加到 contacts_layout LinearLayout 但不会被看到,因为之前的 View 覆盖了整个屏幕(高度)。

在第二段代码中,您添加新 FragmentLinearLayout 是父级 LinearLayout 的第一个子级,它具有空间使其可见。

对于您正在做的事情,我建议您将初始布局包装在 Fragment 类中,该类放置在包装器布局中,您稍后可以非常轻松地替换它。

关于android - 子 fragment 替换父 fragment 根布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16107424/

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