blob: aa0bbc671dcad41aae7fac85b2e151a5fd14b8ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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="#444444"
android:endColor="#222222" />
<corners android:radius="15dp" />
</shape>
|