-
Notifications
You must be signed in to change notification settings - Fork 1
/
rounded_button.xml
33 lines (32 loc) · 977 Bytes
/
rounded_button.xml
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
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
android:shape="rectangle" >
<corners
android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp"
android:radius="10dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"
/>
<solid
android:color="#1792E6"/>
</shape>
</item>
<item
android:state_pressed="true">
<shape
android:shape="rectangle" >
<corners
android:bottomLeftRadius="20dp"
android:bottomRightRadius="20dp"
android:radius="10dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"
/>
<solid
android:color="#1792E6"/>
</shape>
</item>
</selector>