2020-06-05 09:25:42 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-01-25 15:49:21 +00:00
|
|
|
<layer-list
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<item>
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<gradient android:startColor="@color/blue_500" android:centerColor="@color/brand_400" android:endColor="@color/red_500" />
|
2020-06-05 09:25:42 +00:00
|
|
|
<corners android:radius="8dp" />
|
|
|
|
|
</shape>
|
2022-01-25 15:49:21 +00:00
|
|
|
</item>
|
|
|
|
|
<item android:top="3dp"
|
|
|
|
|
android:left="3dp"
|
|
|
|
|
android:right="3dp"
|
|
|
|
|
android:bottom="3dp">
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid android:color="?attr/colorWindowBackground" />
|
|
|
|
|
<corners android:radius="6dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
<item android:right="3dp">
|
|
|
|
|
<bitmap android:gravity="right" android:tileMode="disabled" android:src="@drawable/adventure_guide_right" />
|
|
|
|
|
</item>
|
|
|
|
|
</layer-list>
|
|
|
|
|
|