答案 0 :(得分:3)
android:divider="@drawable/dash"
在drawable文件夹中创建dash.xml并输入以下代码
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:color="#fdfdfd"
android:width="1dp"
android:dashGap="3dp"
android:dashWidth="1dp"
/>
<size
android:height="3dp"
/>
</shape>
您还可以更改点的颜色