1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <?xml version="1.0" encoding="utf-8"?>
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android"
| android:shape="line" >
|
| <!-- 显示一条虚线,破折线的宽度为 dashWith,破折线之间的空隙的宽度为 dashGap,当 dashGap=0dp 时,为实线 -->
|
| <item
| android:left="-2dp"
| android:right="-2dp"
| android:top="-2dp">
| <shape>
| <stroke
| android:dashGap="0dp"
| android:dashWidth="1dp"
| android:width="1dp"
| android:color="#ffffff" />
|
| <size android:height="1px" />
| </shape>
| </item>
|
| </layer-list>
|
|