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 回答