home_bottom_menu_bg.xml
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"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Drop Shadow Stack -->
<item>
<shape>
<padding android:top="1dp" />
<solid android:color="#10DDDDDD" />
</shape>
</item>
<item>
<shape>
<padding android:top="1dp" />
<solid android:color="#20DDDDDD" />
</shape>
</item>
<item>
<shape>
<padding android:top="1dp" />
<solid android:color="#40DDDDDD" />
</shape>
</item>
<item>
<shape>
<padding android:top="1dp" />
<solid android:color="#50DDDDDD" />
</shape>
</item>
<item>
<shape>
<padding android:top="1dp" />
<solid android:color="#60DDDDDD" />
</shape>
</item>
<!-- Background -->
<item>
<shape>
<solid android:color="@android:color/white" />
</shape>
</item>
</layer-list>