gpt4 book ai didi

android - 如何从代码设置布局属性

转载 作者:太空狗 更新时间:2023-10-29 15:33:03 25 4
gpt4 key购买 nike

如何通过代码设置 RelativeLayout 下的 TextView 的属性。

这是我的布局:

<RelativeLayout
android:id="@+id/team_left"
android:layout_width="wrap_content"
android:layout_height="50dip"
android:layout_alignParentLeft="true">
<ImageView
android:id="@+id/flag_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/img"/>
<TextView
android:id="@+id/country_left"
android:textColor="@color/txt_color"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>

如何从代码中为 TextView 设置诸如“android:layout_toRightOf="@id/flag_left"之类的属性。

最佳答案

您需要使用 RelativeLayout.LayoutParams对于 TextView ,然后使用 addRule .

例子:

RelativeLayout.LayoutParams params =
new RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT);
params.addRule(RelativeLayout.LAYOUT_ABOVE, R.id.flag_left);
tv.setLayoutParams(params);

关于android - 如何从代码设置布局属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5580680/

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