Advertisement
oim_trust

btn_background

Dec 15th, 2015
624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.04 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3.  
  4.     <item android:state_pressed="true">
  5.         <shape android:shape="rectangle"
  6.            >
  7.             <corners
  8.  
  9.                android:bottomLeftRadius="15dp"
  10.                android:bottomRightRadius="15dp"
  11.                android:topLeftRadius="15dp"
  12.                android:topRightRadius="15dp"
  13.  
  14.               />
  15.             <gradient android:angle="-90"
  16.                android:startColor="#1721e1"
  17.                android:endColor="#ff39e6d2"/>
  18.         </shape>
  19.     </item>
  20.  
  21.     <item>
  22.         <shape android:shape="rectangle">
  23.             <corners
  24.                android:bottomLeftRadius="15dp"
  25.                android:bottomRightRadius="15dp"
  26.                android:topLeftRadius="15dp"
  27.                android:topRightRadius="15dp"/>
  28.             <gradient android:angle="-90"
  29.                android:startColor="#1721e1"
  30.                android:endColor="#ff39e6d2"/>
  31.         </shape>
  32.     </item>
  33.  
  34. </selector>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement