0

リストビューを作成するためにこのようなアクティビティのレイアウトを持っていますが、リスト項目の背景のみを使用しています。完全な背景が必要です。

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/back"
    android:padding="5dp" >

<ImageView
    android:id="@+id/logo"
    android:layout_width="50px"
    android:layout_height="50px"
    android:layout_marginLeft="5px"
    android:layout_marginRight="20px"
    android:layout_marginTop="5px"
     >
</ImageView>

<TextView
    android:id="@+id/label"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="@+id/label"
    android:textColor="#FFFFFF"
    android:textSize="30px" >
</TextView>

</LinearLayout>

   setListAdapter(new Categoryarrayadapter(this, c));

カスタム カテゴリ アダプタを呼び出しています。フルスクリーンの背景を設定する方法。

4

1 に答える 1

0

実際、私はListActivityクラスを拡張し、アダプタの背景画像を設定していました.問題を見つけました.onCreateメソッドに次のコードを追加する必要があります.

    getListView().setBackgroundResource(R.drawable.back);
于 2013-07-04T06:30:09.150 に答える