2

我看到了这种奇怪的行为,想问问是否有人找到了解决方法。我有一个简单的 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>
4

1 回答 1

6

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

RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams)v.getLayoutParams();
params.width = myNewWidth;
v.requestLayout();
于 2013-03-07T18:21:39.940 回答