Skip to content

Instantly share code, notes, and snippets.

@suciptoid
Last active April 18, 2017 04:29
Show Gist options
  • Save suciptoid/76b6e0ea6c5c743588e53143a158c3ed to your computer and use it in GitHub Desktop.
Save suciptoid/76b6e0ea6c5c743588e53143a158c3ed to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_pressed="true" >
<shape android:shape="rectangle" >
<corners android:radius="3dip" />
<stroke android:width="1dip" android:color="@color/colorPrimaryDark" />
</shape>
</item>
<item android:state_checked="true">
<shape android:shape="rectangle" >
<corners android:radius="3dip" />
<stroke android:width="1dip" android:color="@color/colorPrimary" />
</shape>
</item>
<item>
<shape android:shape="rectangle" >
<corners android:radius="3dip" />
<stroke android:width="1dip" android:color="#cccccc" />
</shape>
</item>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment