forked from hussien89aa/AndroidTutorialForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shape.xml
40 lines (25 loc) · 1 KB
/
shape.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
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<solid android:color="#f9f9f9"></solid>
<corners android:radius="150dp"></corners>
<stroke android:color="#00bfd5" android:width="1dp"></stroke>
<padding android:bottom="12dp" android:left="12dp" android:right="12dp"
android:top="12dp"></padding>
</shape>
</item>
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<solid android:color="#f3f"></solid>
<corners android:radius="150dp"></corners>
<stroke android:color="#00bfd5" android:width="1dp"></stroke>
<padding android:bottom="12dp" android:left="12dp" android:right="12dp"
android:top="12dp"></padding>
</shape>
</item>
</selector>