1234567891011121314151617181920 |
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <solid android:color="#00000000" />
- <stroke
- android:width="2dp"
- android:color="#ffffff" />
- <padding
- android:bottom="2dp"
- android:left="2dp"
- android:right="2dp"
- android:top="2dp" />
- <corners
- android:bottomLeftRadius="10.0dip"
- android:bottomRightRadius="10.0dip" />
- </shape>
|