blob: 30a43e9156549ec30ca9a45ce4c03caddfe7d2b4 (
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>
|