这是我的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
图片:
然而这里是在Android模拟器中显示的内容:
我可以看到正在应用背景,因为它有一个轻微的渐变效果,但我不知道这个黑色叠加来自哪里!
答案 0 :(得分:2)
您是否尝试过不同的图片来查看该图片是否做同样的事情?对我而言,它似乎是在RelativeLayout
列表中创建图像,并且您的textview背景位于顶部。因为你设置它来填充行的宽度,我敢打赌如果你只是设置为wrap_content
你会在那里看到它
尝试将图片作为TextView
背景替换