自定义ListView背景问题

时间:2012-10-26 15:16:31

标签: android xml listview layout background

我使用图片制作自定义Listview。我的items.xml是这样的:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dip"
    android:soundEffectsEnabled="true"
>

    <ImageView
        android:layout_width="50dip"
        android:layout_height="50dip"
        android:id="@+id/imgViewLogo"   
        android:layout_alignParentLeft="true"
        android:layout_centerInParent="true"
        android:scaleType="center">
    </ImageView>

    <TextView
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:id="@+id/txtViewTitle"
        android:layout_toRightOf="@+id/imgViewLogo"
        android:layout_marginLeft="2dip"
        android:textColor="#000000">
    </TextView>

    <TextView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:id="@+id/txtViewDescription"
        android:layout_toRightOf="@+id/imgViewLogo"
        android:layout_below="@+id/txtViewTitle"
        android:layout_marginLeft="2dip"

        android:textColor="#000000">
    </TextView>

</RelativeLayout>

enter image description here

这是有效的,当我触摸它并将其移动到我的自定义列表视图时,它已经坏了。我认为此背景可能存在问题main.xml

enter image description here

我的main.xml是这样的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
        android:background="@drawable/gradient_body"
android:focusable="true"
    >
    <ListView 
        android:id="@+id/listView1" 
        android:background="@drawable/gradient_body"
        android:focusable="true"
        android:layout_height="fill_parent" 
        android:layout_width="fill_parent"
        android:divider="#c0bbbb"
        android:dividerHeight="1dp"
></ListView>
</LinearLayout>

我很难改变其他属性,但它无法正常工作。

1 个答案:

答案 0 :(得分:1)

而不是放

android:background="@drawable/gradient_body"
在main.xml的listview中的

将它添加到items.xml中的relativeLayout中,就像这样

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip"
android:background="@drawable/gradient_body"
android:soundEffectsEnabled="true" >