我有一个自定义ListView,我想在我的单元格之间显示细长的渐变分隔符。这是我的ListView的XML
<ListView
android:id="@+id/fil"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@drawable/list_divider"
android:dividerHeight="1dp"
android:clickable="true">
</ListView>
在我的list_divider.xml中,我有一个如下定义的渐变:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle">
<gradient
android:angle="0"
android:centerColor="#999999"
android:endColor="#00000000"
android:startColor="#00000000" />
</shape>
</item>
通常,这会显示渐变分割器,但它不起作用。显然,问题位于我的行布局中,并带有RelativeLayout根目录:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="#ffffff"
android:padding="5dip" >
当我没有背景时,它正在工作。但是当我想添加白色背景时,它会显示一个完整的黑色分隔符。这有什么问题?
由于