Skip to content

Instantly share code, notes, and snippets.

@sax1johno
Created June 3, 2015 22:16
Show Gist options
  • Save sax1johno/c9ef8ed3d3e2217f7fee to your computer and use it in GitHub Desktop.
Save sax1johno/c9ef8ed3d3e2217f7fee 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"
android:variablePadding="true" >
<item
android:drawable="@drawable/circle"
android:state_checked="true" />
<item
android:drawable="@drawable/square"
android:state_checked="false" />
</selector>
@sax1johno
Copy link
Author

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <solid
        android:color="color" />
    <stroke
        android:width="5"
        android:color="red"
        android:dashWidth="2"
        android:dashGap="2" />
</shape>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment