gpt4 book ai didi

android - setLayoutParams 弄乱了 RelativeLayout

转载 作者:太空狗 更新时间:2023-10-29 16:20:52 25 4
gpt4 key购买 nike

我看到了这种奇怪的行为,想问问是否有人找到了解决方法。我有一个简单的 RelativeLayout,里面有另一个布局。

奇怪的行为发生在代码中。如果我从嵌套布局中获取 LayoutParams 并将其设置回它,它会改变布局的外观。似乎在这个过程中丢失了一些参数。这是代码:

RelativeLayout v = (RelativeLayout)findViewById(R.id.group1);

RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(v.getLayoutParams());

v.setLayoutParams(lp);

在这次通话之后,我希望一切都保持原样,但是,我正在失去“layout_AlignParentRight”效果(至少)。谁能帮我理解为什么会这样?

从实际的角度来看,我需要的只是在运行时更改 group1 布局的宽度。所以我通过改变上面“lp”的宽度来做到这一点,它有效,但弄乱了对齐方式。因此,如果对在不影响其他属性的情况下更改布局大小的替代方法有任何建议,也请加入。

布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<RelativeLayout
android:id="@+id/group1"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentRight="true">

<TextView
android:layout_alignParentLeft="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test">
</TextView>

</RelativeLayout>
</RelativeLayout>

最佳答案

只需修改已经存在的参数而不是实例化新参数:

RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams)v.getLayoutParams();
params.width = myNewWidth;
v.requestLayout();

关于android - setLayoutParams 弄乱了 RelativeLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15278623/

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