如何更改包含布局的属性值

时间:2014-05-14 14:01:26

标签: android android-layout

我的布局中RelativeLayout为父级,而TextView

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
   <TextView
     android:text="Test Include"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
 </RelativeLayout>

此布局包含在另一个RelativeLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
   <include layout="@layout/include_me"
         android:layout_alignParentBottom="true"
    android:layout_marginTop="10dp"/>
 </RelativeLayout>

问题:我正在尝试更改所包含布局的属性值。但android:layout_alignParentBottom="true"android:layout_marginTop="10dp"没有任何效果。

更改include中的属性值是否有效?

1 个答案:

答案 0 :(得分:1)

尝试将android:layout_widthandroid:layout_height添加到<include代码