我需要一个列表分隔符,如下所示。谁能帮助我如何实现这一目标?
谢谢你。感谢你的帮助。
索米亚。
将您的 listview 属性设置为
android:divider="@color/lightGreyColor"
您可以将分隔线高度调整为
android:dividerHeight="2dp"
浅灰色的颜色代码 =#ececec
您还可以使用渐变资源使其渐变。
然后像这样写线形..并应用这两个颜色代码并将其设置为列表视图..
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:bottom="-2dp"
android:left="-2dp"
android:top="-2dp">
<shape android:shape="line" >
<gradient
android:endColor="#006064"
android:startColor="#006064" />
</shape>
</item>