20 lines
588 B
XML
20 lines
588 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<gradient
|
|
android:angle="0"
|
|
android:endColor="#081321"
|
|
android:startColor="#132C45" />
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<gradient
|
|
android:angle="45"
|
|
android:endColor="#DD04070C"
|
|
android:startColor="#8804070C" />
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|