GridView のすべての行に背景画像を設定したいと考えています。私はこのコードを使用しました:
GridView gv = (GridView) findViewById(R.id.grid);
ArrayAdapter<String> aa = new ArrayAdapter<String>(
this,
R.layout.row,
items);
gv.setAdapter(aa);
gv.setOnItemClickListener(this);
main.xml: (ここで GridView のデザインを設定します)
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/selection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="14pt"
android:textStyle="bold"
/>
<GridView
android:id="@+id/grid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:verticalSpacing="65px"
android:horizontalSpacing="5px"
android:numColumns="auto_fit"
android:columnWidth="100px"
android:stretchMode="columnWidth"
android:gravity="center"
android:fastScrollEnabled="true"
/>
row.xml: (グリッド ビュー デザインの行をここに設定します)
<LinearLayout
xmlns:android = "http://schemas.android.com/apk/res/android"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:orientation = "horizontal"
android:background="@drawable/rowbg"
>
<TextView
android:id = "@+id/label"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:textSize = "40sp" />
プロジェクトを実行すると、強制的にプログラムが閉じられます。しかし、次のように 2 行目を変更すると、行の設計がなくてもうまく動作します。
ArrayAdapter<String> aa = new ArrayAdapter<String>(
this,
android.R.layout.simple_list_item_1,
items);
コードのどの部分を変更する必要がありますか?
ありがとう
Eclipse でプログラムを実行すると、「アプリケーションは例外なく停止しました。もう一度やり直してください。」というダイアログが表示されます。LogCat では、次のメッセージが表示されます。
Galaxy S でもアプリケーションを実行しようとしましたが、同じエラーが表示されます。