我想在的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>
,並走出把這個: -
如何添加網格和底部按鈕之間我的第二個按鈕。
logcat中顯示的異常是什麼? 它是一個ClassCastException?你可能想要清理和重建你的項目? – 2013-05-14 07:04:04
你可以發佈你的xml代碼第二個按鈕添加和崩潰的logcat細節。 – Raghunandan 2013-05-14 07:13:07