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>
相关推荐
小妖6662 分钟前
vscode vue文件单行注释失效解决办法
ide·vscode·编辑器
Lary_Rock1 小时前
Android 编译问题 prebuilts/clang/host/linux-x86
android·linux·运维
Geek__19921 小时前
VSCode远程图形化GDB
ide·vscode·编辑器
王江奎2 小时前
Android FFmpeg 交叉编译全指南:NDK编译 + CMake 集成
android·ffmpeg
limingade2 小时前
手机打电话通话时如何向对方播放录制的IVR引导词声音
android·智能手机·蓝牙电话·手机提取通话声音
hepherd3 小时前
Flutter 环境搭建 (Android)
android·flutter·visual studio code
_一条咸鱼_3 小时前
揭秘 Android ListView:从源码深度剖析其使用原理
android·面试·android jetpack
_一条咸鱼_3 小时前
深入剖析 Android NestedScrollView 使用原理
android·面试·android jetpack
_一条咸鱼_3 小时前
揭秘 Android ScrollView:深入剖析其使用原理与源码奥秘
android·面试·android jetpack