gpt4 book ai didi

android - 如何在 RelativeLayout 中设置 fragment 在中心的位置

转载 作者:行者123 更新时间:2023-11-29 17:20:49 25 4
gpt4 key购买 nike

大家好,我正在玩 android 中的 fragment 。
我读到有两种方法可以在 Activity 中绑定(bind) fragment 。
1) 使用 <fragment>布局 (XML) 文件中的标记。
2) 使用 FragmentManager 和 FragmentTransaction 。
我希望我的 Activity 动态处理 fragment ,所以我选择了第二种方法。
但是当添加 fragment 时,它会添加到 RelativeLayout Activity 的左上角(这似乎是 RelativeLayout 的默认行为)我希望我的 fragment 出现在 Activity 布局的中心。我只是不知道如何在 JAVA 代码中给 fragmet 定位。我也研究了 stackoverflow,

which uses --RelativeLayout.LayoutParams

这似乎与 View 对象(按钮、 TextView 等)一起工作。
任何建议。

最佳答案

您可以在 XML 的 RelativeLayout 中设置占位符 FrameLayout 并将其与 android:layout_centerInParent="true" 对齐。然后用代码中的 fragment 替换此占位符 FragmentTransaction#replace(int containerViewId, Fragment fragment, String tag)

在您的 Activity XML 布局中:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@id/fragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
</RelativeLayout>

在您的 Activity 类中:

getFragmentManager().beginTransaction()
.replace(R.id.fragment, new MyFragment())
.commit();

关于android - 如何在 RelativeLayout 中设置 fragment 在中心的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36620978/

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