Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  4.     <item android:state_pressed="true">
  5.         <shape android:shape="rectangle">
  6.             <solid android:color="#ff0000"/>
  7.         </shape>
  8.     </item>
  9.     <item android:state_pressed="false">
  10.         <shape android:shape="rectangle">
  11.             <solid android:color="#ff14a33a"/>
  12.         </shape>
  13.     </item>
  14.     <item android:state_focused="true">
  15.         <shape android:shape="rectangle">
  16.             <solid android:color="#ff2929a3"/>
  17.         </shape>
  18.     </item>
  19. </selector>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement