dotted_line.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<size android:height="1dp"/>//虚线高度
<stroke
android:dashWidth="10dp"//单位虚线宽度
android:dashGap="10dp"
android:color="@color/dotted"
android:width="1dp"
/>
</shape>
高度要大于1dp,否则不显示
<View
android:layout_width="match_parent"
android:layout_height="1.5dp"
android:background="@drawable/dotted_line"
android:layerType="software"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_stationName" />