Advertisement
gonzalob

Untitled

Oct 26th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  3.  
  4. <!-- Bottom 2dp Shadow -->
  5. <item>
  6. <shape android:shape="oval">
  7.  
  8. <solid android:color="#d8d8d8" />
  9. <corners android:radius="7dp" />
  10.  
  11. </shape>
  12. </item>
  13.  
  14. <!-- White Top color -->
  15. <item android:top="0px"
  16. android:left="2px"
  17. android:right="2px"
  18. android:bottom="5px">
  19.  
  20. <shape android:shape="oval">
  21. <size android:height="50dp" android:width="50dp"></size>
  22. <solid android:color="@color/color_pink"></solid>
  23. </shape>
  24.  
  25. </item>
  26.  
  27.  
  28. </layer-list>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement