Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4.  
  5. <gradient android:startColor="@color/background_light_grey"
  6. android:endColor="@color/transparent"
  7. android:angle="90"/>
  8. </shape>
  9.  
  10. <?xml version="1.0" encoding="UTF-8"?>
  11. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  12. <item>
  13. <shape>
  14. <gradient
  15. android:startColor="#ff2d9a59"
  16. android:centerColor="#ff42959a"
  17. android:endColor="#80000000"// add here transparent color
  18. />
  19. </shape>
  20. </item>
  21. </selector>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement