blob: 55050c35797c8e28b6ce9124166012d43413bb75 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:type="linear"
android:angle="45"
android:startColor="#008477"
android:endColor="#000000" />
<corners android:radius="15dp" />
</shape>
|