22 lines
570 B
XML
22 lines
570 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<corners android:radius="36dp" />
|
|
|
|
<!-- <corners-->
|
|
<!-- android:bottomLeftRadius="36dp"-->
|
|
<!-- android:bottomRightRadius="8dp"-->
|
|
<!-- android:topLeftRadius="36dp"-->
|
|
<!-- android:topRightRadius="36dp" />-->
|
|
|
|
<solid android:color="#FF734C" />
|
|
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="#E8F1FB" />
|
|
|
|
<size
|
|
android:width="200dp"
|
|
android:height="50dp" />
|
|
|
|
</shape> |