forked from hussien89aa/AndroidTutorialForBeginners
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshape.xml
More file actions
Latest commit
40 lines (25 loc) · 1 KB
/
Copy pathshape.xml
File metadata and controls
40 lines (25 loc) · 1 KB
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"?>
<selectorxmlns:android="http://schemas.android.com/apk/res/android">
<itemandroid:state_pressed="true">
<shapexmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<solidandroid:color="#f9f9f9"></solid>
<cornersandroid:radius="150dp"></corners>
<strokeandroid:color="#00bfd5"android:width="1dp"></stroke>
<paddingandroid:bottom="12dp"android:left="12dp"android:right="12dp"
android:top="12dp"></padding>
</shape>
</item>
<item>
<shapexmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<solidandroid:color="#f3f"></solid>
<cornersandroid:radius="150dp"></corners>
<strokeandroid:color="#00bfd5"android:width="1dp"></stroke>
<paddingandroid:bottom="12dp"android:left="12dp"android:right="12dp"
android:top="12dp"></padding>
</shape>
</item>
</selector>