1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| <?xml version="1.0" encoding="utf-8"?>
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android"
| xmlns:tools="http://schemas.android.com/tools">
| <item>
| <shape android:shape="rectangle">
| <solid android:color="@color/black" />
|
| </shape>
| </item>
| <item
| android:bottom="1dp"
| android:left="1dp"
| android:right="1dp">
| <shape>
| <solid android:color="@color/white" />
| <padding
| android:bottom="2dp"
| android:left="2dp"
| android:right="2dp"
| android:top="1dp" />
| </shape>
| </item>
|
|
| </layer-list>
|
|