我有一个列表视图,我想要一个覆盖整个列表视图的背景渐变。我不希望每一行都有一个渐变。我得到的只是白色背景。
mybg.xml 中的渐变代码:
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="#e6e6e6"
android:endColor="#ffffff"
android:angle="45" />
</shape>
</item>
</selector>
我的列表视图:
<ListView
android:id="@+id/lvEvents"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@drawable/mybg"
android:cacheColorHint="#00000000"
android:divider="#ffc0c0c0"
android:dividerHeight="1dp"
android:scrollingCache="true" />