| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <gradient
- android:angle="0"
- android:endColor="@android:color/holo_blue_dark"
- android:startColor="@android:color/holo_blue_dark" />
- <stroke
- android:width="1dp"
- android:color="#00000000" />
- <padding
- android:bottom="10dp"
- android:left="10dp"
- android:right="10dp"
- android:top="10dp" />
- </shape>
|