Android studio:如何在同一个页面显示多个fragment

家母罹患肝癌,可在水滴筹页面查看详情

实现一个简单的效果:

创建 TestOneFragment

java 复制代码
public class TestOneFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // 使用一个简单的布局文件
        return inflater.inflate(R.layout.fragment_test_one, container, false);
    }
}

对应的 XML 布局文件:

XML 复制代码
<!-- res/layout/fragment_test_one.xml -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/textViewOne"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This is Test One Fragment" />
</LinearLayout>

测试显示,布局文件的layout_height为match_parent时可以正常显示

创建 TestTwoFragment

java 复制代码
public class TestTwoFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        return inflater.inflate(R.layout.fragment_test_two, container, false);
    }
}

对应的XML 布局文件:

XML 复制代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:background="@android:color/holo_red_light"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This is Test Two Fragment"
        android:textSize="18sp"
        android:textColor="@android:color/white"/>
</LinearLayout>

在主界面添加 Fragment

然后,在你的活动中(比如 MainActivity)添加这两个 Fragment。我们可以通过 FragmentTransaction 将两个 Fragment 添加到同一个容器布局中。

java 复制代码
public class MainActivity6 extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main6);
        Log.d("FragmentTest", "Adding fragments...");
        // 获取 FragmentManager 和 FragmentTransaction
        FragmentManager fragmentManager = getSupportFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

        // 创建两个 Fragment 实例
        TestOneFragment testOneFragment = new TestOneFragment();
        TestTwoFragment testTwoFragment = new TestTwoFragment();

        // 将 Fragment 添加到容器中
        fragmentTransaction.add(R.id.fragmentContainerOne, testOneFragment);
        fragmentTransaction.add(R.id.fragmentContainerTwo, testTwoFragment);

        // 提交事务
        fragmentTransaction.commit();
        Log.d("FragmentTest", "Fragments added.");
    }
}

MainActivity 的布局文件中,定义两个 FrameLayout 容器,用来显示两个 Fragment

XML 复制代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="16dp">

    <!-- 第一个 Fragment 容器 -->
    <FrameLayout
        android:id="@+id/fragmentContainerOne"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:background="@android:color/holo_blue_light"
        android:layout_marginBottom="16dp" />

    <!-- 第二个 Fragment 容器 -->
    <FrameLayout
        android:id="@+id/fragmentContainerTwo"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:background="@android:color/holo_green_light"/>
</LinearLayout>
相关推荐
shuair22 分钟前
idea 2023.3.7常用插件
java·ide·intellij-idea
太空漫步111 小时前
android社畜模拟器
android
WeiLai11124 小时前
CodeGPT 使用教程(适用于 VSCode)
ide·vscode·编辑器
海绵宝宝_4 小时前
【HarmonyOS NEXT】获取正式应用签名证书的签名信息
android·前端·华为·harmonyos·鸿蒙·鸿蒙应用开发
GEEK.攻城狮4 小时前
使用VSCODE开发C语言程序
c语言·ide·vscode
凯文的内存6 小时前
android 定制mtp连接外设的设备名称
android·media·mtp·mtpserver
天若子6 小时前
Android今日头条的屏幕适配方案
android
林的快手7 小时前
伪类选择器
android·前端·css·chrome·ajax·html·json
浪波湾8 小时前
汉化VScode
ide·vscode·编辑器
望佑8 小时前
Tmp detached view should be removed from RecyclerView before it can be recycled
android