我的mainactivity的布局文件,默认的是一个相对布局。我里面就两个控件,一个Button和一个ImageView。我想让Button紧贴着父亲的上面,ImageView占满剩下的区域。Button的高度就普通的就行。我贴上我的代码,老出错。一运行就崩掉。
<Button
android:id="@+id/mybtn"
android:layout_alignParentTop="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="点我"/>
<ImageView
android:id="@+id/image_view"
android:layout_below="@id/mybtn"
android:layout_marginBottom="0dp"
android:scaleType="centerInside"
/>