リストビューを作成するためにこのようなアクティビティのレイアウトを持っていますが、リスト項目の背景のみを使用しています。完全な背景が必要です。
<?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));
カスタム カテゴリ アダプタを呼び出しています。フルスクリーンの背景を設定する方法。