blob: f5b5fed9a2834e275f3ed5acdcd34504f8465228 (
plain)
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" >
<solid android:color="@color/grey800" />
<corners android:radius="2dp" />
<stroke
android:width="0.5dp"
android:color="@color/grey900" >
</stroke>
<padding
android:bottom="0dp"
android:left="0dp"
android:right="0dp"
android:top="0dp" />
</shape>
|