blob: b03411923c06ffe4989d8e996d76f7ef49f5c1bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners
android:radius="14dp"
/>
<gradient
android:angle="45"
android:centerX="35%"
android:centerColor="#FF0000"
android:startColor="#FF0000"
android:endColor="#FF0000"
android:type="linear"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="158dp"
android:height="60dp"
/>
<stroke
android:width="3dp"
android:color="#FF0000"
/>
</shape>
|