relative
でレイアウトに2つのボタンを追加しようとしていgridview
ます。
しかし、私が2番目を追加しているとき、button
時々クラッシュすることさえありません。
私の希望デザインは
:-
しかし、ボタンを1つだけ追加することに成功しました。だから私のワンボタンコードは
<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>
そしてこれを出してください:-
グリッドと下のボタンの間に 2 番目のボタンを追加するにはどうすればよいですか。