12 lines
325 B
XML
12 lines
325 B
XML
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
<size
|
||
|
|
android:width="80dp"
|
||
|
|
android:height="50dp" />
|
||
|
|
<solid android:color="#1292EE"/>
|
||
|
|
<stroke
|
||
|
|
android:width="2dp"
|
||
|
|
android:color="#00F8F8"/>
|
||
|
|
<corners android:radius="8dp"/>
|
||
|
|
</shape>
|