我的布局中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中的属性值是否有效?
答案 0 :(得分:1)
尝试将android:layout_width
和android:layout_height
添加到<include
代码