32 lines
788 B
XML
32 lines
788 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item>
|
|
<shape
|
|
android:dither="true"
|
|
android:shape="rectangle">
|
|
|
|
<gradient
|
|
android:angle="90"
|
|
android:startColor="#1A000000"
|
|
android:centerColor="#00FFFFFF"
|
|
android:endColor="#00FFFFFF" />
|
|
|
|
</shape>
|
|
</item>
|
|
|
|
<item>
|
|
<shape
|
|
android:dither="true"
|
|
android:shape="rectangle">
|
|
|
|
<gradient
|
|
android:angle="90"
|
|
android:startColor="#0D000000"
|
|
android:centerColor="#00FFFFFF"
|
|
android:endColor="#00FFFFFF" />
|
|
|
|
</shape>
|
|
</item>
|
|
|
|
</layer-list>
|