gpt4 book ai didi

android - 如何在 TextView 中以编程方式设置 layout_toEndOf 和 layout_toRightOf

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

我想以编程方式设置这些属性:-

android:layout_toEndOf="@+id/imageView1"
android:layout_toRightOf="@+id/imageView1"

最佳答案

View 的父级当然必须是 RelativeLayout。然后你可以做

 final RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.RIGHT_OF, R.id.imageView1);
params.addRule(RelativeLayout.END_OF, R.id.imageView1);

然后打电话

view.setLayoutParams(params);

关于android - 如何在 TextView 中以编程方式设置 layout_toEndOf 和 layout_toRightOf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34132713/

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