22 lines
575 B
XML
22 lines
575 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
|
|
<gradient
|
|
android:angle="90"
|
|
android:centerColor="@color/white"
|
|
android:centerX="0.9"
|
|
android:endColor="#FFF55B"
|
|
android:startColor="@color/white"
|
|
android:type="linear"
|
|
android:useLevel="true" />
|
|
|
|
<corners
|
|
android:bottomLeftRadius="0dp"
|
|
android:bottomRightRadius="0dp"
|
|
android:topLeftRadius="20dp"
|
|
android:topRightRadius="20dp" />
|
|
|
|
</shape>
|
|
|