我正在尝试为divider
for设置样式ListView
。我想要的只是两条简单的水平线。
列表.xml
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/ListView" >
</ListView>
样式.xml
<style name="ListView" parent="android:style/Widget.ListView">
<item name="android:divider">@drawable/divider</item>
<!-- 5dp: just to make sure there's enough space -->
<item name="android:dividerHeight">5dp</item>
</style>
分隔符.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#00ffff" />
<size android:height="1dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="#ff0000" />
<size android:height="1dp" />
</shape>
</item>
</layer-list>
height of 5dp
结果是一条带有(应该是 2,不是吗?)和color of red
(第二个项目的颜色)的水平线。第一个带有颜色的项目#00ffff
根本不显示。
有人可以建议两条简单的水平线的代码吗?