1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <?xml version="1.0" encoding="utf-8"?>
| <shape xmlns:android="http://schemas.android.com/apk/res/android" >
| <stroke
| android:width="1dp"
| android:color="@color/colorWhite"
| android:dashWidth="5px"
| android:dashGap="5px"/>
|
| <!--<solid android:color="@color/colorWhite" />-->
|
| <padding
| android:left="1dp"
| android:right="1dp"
| android:bottom="1dp"
| android:top="1dp"/>
| <corners android:radius="12dp" />
| </shape>
|
|