JLChen
2021-03-16 3617e6eecac94965554487afc50d39b0584324fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="line" >
 
    <!-- 显示一条虚线,破折线的宽度为 dashWith,破折线之间的空隙的宽度为 dashGap,当 dashGap=0dp 时,为实线 -->
    <solid android:color="#eeeeee" />
 
    <size android:height="2dp" />
 
    <stroke
        android:dashGap="0dp"
        android:dashWidth="2dp"
        android:width="2dp"
        android:color="#eeeeee" />
 
</shape>