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