13 lines
430 B
XML
13 lines
430 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:centerX="50%"
|
||
|
android:centerY="50%"
|
||
|
android:gradientRadius="400"
|
||
|
android:startColor="#44000000"
|
||
|
android:endColor="#88000000"
|
||
|
android:type="linear" />
|
||
|
<corners android:radius="4dp" />
|
||
|
</shape>
|