-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconer_raduis_all_round_background.xml
More file actions
30 lines (26 loc) · 1.07 KB
/
coner_raduis_all_round_background.xml
File metadata and controls
30 lines (26 loc) · 1.07 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
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- * the layer list ads styles in layer items-->
<!-- first layer-->
<item>
<shape android:shape="rectangle">
<corners android:topLeftRadius="30dp"
android:topRightRadius="30dp"
android:bottomRightRadius="30dp"
android:bottomLeftRadius="30dp"/>
<!-- draw a 4 dp width border around the rectangle shape -->
<stroke android:color="@color/white" android:width="4dp"/>
</shape>
</item>
<!-- second layer-->
<item android:top="4dp" android:left="4dp" android:right="4dp" android:bottom="4dp">
<shape android:shape="rectangle">
<corners
android:topLeftRadius="30dp"
android:topRightRadius="30dp"
android:bottomRightRadius="30dp"
android:bottomLeftRadius="30dp"/>
<solid android:color="@color/black"/>
</shape>
</item>
</layer-list>