Advertisement
Guest User

android shape selector

a guest
Feb 10th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.40 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3.     <item android:state_pressed="false">
  4.         <shape android:shape="rectangle" >
  5.             <solid android:color="@color/red"/>
  6.  
  7.             <corners
  8.                android:bottomLeftRadius="9dp"
  9.                android:bottomRightRadius="9dp" />
  10.  
  11.         </shape>
  12.     </item>
  13. </selector>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement