主屏幕小部件的RelativeLayout参数

时间:2014-03-24 22:55:19

标签: android layout widget mainscreen

什么样的家伙! 这是我的布局xml的一个例子:     

<RelativeLayout
    android:id="@+id/conf_RLayoutMultiSize"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"  
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    >

    <ImageView
        android:id="@+id/widget_body"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:src="@drawable/transparent100" />

    <ImageView
        android:id="@+id/widget_scar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:src="@drawable/scar1" />
</RelativeLayout>

<ImageView
    android:id="@+id/widget_dial"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:src="@drawable/dial1" />
</RelativeLayout>

问题是 - 是否可以通过代码更改conf_RLayoutMultiSize大小? 我有cofigurantion布局,我很容易做到,但无法实现如何在manescreen vidget上做到这一点。 我试过这个

  widgetView.setInt(R.id.conf_RLayoutMultiSize,"setLayoutParams",150+widgetBodySize); 

但它没有成功

1 个答案:

答案 0 :(得分:0)

您可以按照以下方式执行此操作:

RelativeLayout rlay = (RelativeLayout) findViewById(R.id.conf_RLayoutMultiSize);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(value_width, value_height); // Set whatever parameters you want here
rlay.setLayoutParams(params); // Assign parameters to relative layout