gpt4 book ai didi

java - 如何更改我的 fragment 中的文件 XML 属性

转载 作者:行者123 更新时间:2023-12-01 23:03:49 25 4
gpt4 key购买 nike

我创建了四个 fragment 类并在 ViewPager 中设置适配器我有一个 XML 标准文件

test_fragment.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/layout">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Egyptian Pyramids"
android:textSize="30sp"
android:id="@+id/textTitle"
android:textColor="@color/colorPrimary"
/>

<TextView
android:id="@+id/textDescription"
android:layout_width="match_parent"
android:layout_height="171dp"
android:padding="10dp"
android:text="@string/description"
android:textSize="12sp"
android:textColor="#000000"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:layout_weight="1">

<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/image1"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/image2"/>
</LinearLayout>
</LinearLayout>

我有四个 fragment 类已完成代码以在 MainActivity 中滑动

第一个 fragment

 public class FirstFragment extends Fragment {


public FirstFragment () {
// Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View inflate = inflater.inflate(R.layout.test_fragment, container, false);
return inflate;

}

}

如何更改 test_fragment.xml 文件中的属性以在根据每个 fragment 滑动时显示

最佳答案

如果我没理解错的话,您希望对所有 fragment 使用相同的布局,但在 TextView 上使用不同的运行时值。

为了方便起见,您必须创建多个 Fragment 类及其布局文件。否则,您可以使用相同的布局 (xml) 文件并在创建的 res 中更改它们的值。 fragment 类(正如您在问题中所述)。

例如FirstFragment ->fragment.xml
SecondFragment->fragment.xml
第三 fragment ->fragment.xml
FourthFragment ->fragment.xml

在各个 fragment 类的 onViewCreated 方法中更改您的“xml 属性”。

或者更好的一个

FirstFragment ->fragment_one.xml
SecondFragment->fragment_two.xml
ThirdFragment->fragment_ Three.xml
FourthFragment ->fragment_four.xml

关于java - 如何更改我的 fragment 中的文件 XML 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58411211/

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