gpt4 book ai didi

android - 如何设置android :layout_alignParentLeft attribute to imageview in code?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:41 27 4
gpt4 key购买 nike

我想在代码中实现与此 xml 中相同的功能(此 ImageView 位于相对布局内):

                          <ImageView   
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/logo"/>

我知道如何设置布局宽度和高度,但不知道如何设置 layout_alignParentLeft="true"。

是否可以在代码中执行此操作?

最佳答案

RelativeLayout.LayoutParams params = 
new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,
RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
imageView.setLayoutParams(params);

关于android - 如何设置android :layout_alignParentLeft attribute to imageview in code?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4819923/

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