Advertisement
ProgrameruPokusaju

Ripple effect

Jul 10th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.56 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- in drawable-v21 folder-->
  3. <ripple
  4.    xmlns:android="http://schemas.android.com/apk/res/android"
  5.    android:color="?android:colorControlHighlight">
  6.  
  7.     <item android:id="@android:id/mask">
  8.         <shape android:shape="rectangle">
  9.             <solid android:color="?android:colorAccent" />
  10.         </shape>
  11.     </item>
  12.  
  13.     <item>
  14.         <shape android:shape="rectangle">
  15.             <!-- put your background color here-->
  16.             <solid android:color="#9acc3e" />
  17.         </shape>
  18.     </item>
  19.  
  20. </ripple>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement