ここで、Hello グリッド ビューのチュートリアルに従いました。グリッド ビューで画像の横にボタンを追加する方法はあるのでしょうか? もしそうなら、どうすればできますか?
質問する
540 次
1 に答える
0
次のようなことを試すことができます:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridview"
android:layout_width="fill_parent"
android:layout_height="300dp"
android:columnWidth="90dp"
android:numColumns="auto_fit"
android:verticalSpacing="10dp"
android:horizontalSpacing="10dp"
android:stretchMode="columnWidth"
android:gravity="center"
/>
<Button
android:id="@+id/bAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add RES"
android:layout_below="@+id/gridview" />
</RelativeLayout>
それが役立つことを願っています。
于 2012-07-03T00:47:50.393 に答える