为什么我的Android列表项背景图像显示为黑色叠加?

时间:2012-05-14 20:55:28

标签: android android-layout android-theme

这是我的Android list_item布局XML:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:paddingRight="?android:attr/scrollbarSize"
    android:background="@drawable/list_bg">
    <TextView
        android:id="@+id/tv_displayname"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:ellipsize="end"
        android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>

这是list_bg图片:

enter image description here

然而这里是在Android模拟器中显示的内容:

enter image description here

我可以看到正在应用背景,因为它有一个轻微的渐变效果,但我不知道这个黑色叠加来自哪里!

1 个答案:

答案 0 :(得分:2)

您是否尝试过不同的图片来查看该图片是否做同样的事情?对我而言,它似乎是在RelativeLayout列表中创建图像,并且您的textview背景位于顶部。因为你设置它来填充行的宽度,我敢打赌如果你只是设置为wrap_content你会在那里看到它

尝试将图片作为TextView背景替换