17 lines
572 B
XML
17 lines
572 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<item>
|
||
|
|
<shape android:shape="rectangle">
|
||
|
|
<solid android:color="#ffffff"/>
|
||
|
|
<corners
|
||
|
|
android:topLeftRadius="10dp"
|
||
|
|
android:topRightRadius="0dp"
|
||
|
|
android:bottomRightRadius="0dp"
|
||
|
|
android:bottomLeftRadius="10dp" />
|
||
|
|
<stroke
|
||
|
|
android:width="1dp"
|
||
|
|
android:color="#808080"
|
||
|
|
/>
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
</selector>
|