我正在尝试在relative
布局中添加两个按钮gridview
。
但是当我添加第二个时,button
它有时甚至会崩溃。
我的愿望设计是
:-
但它只成功添加了一个按钮。所以我的一键代码是
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/delete_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Delete selected image" />
<GridView
android:id="@+id/gridView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/delete_button"
android:layout_alignParentTop="true"
android:columnWidth="90dp"
android:gravity="center"
android:horizontalSpacing="10dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="10dp" >
</GridView>
</RelativeLayout>
然后出去放这个:-
如何在网格和底部按钮之间添加我的第二个按钮。