blob: 4c241c4cf381dfc4790de697a0d3042cdc0468c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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>
|