Skip to content

Instantly share code, notes, and snippets.

@crypticminds
Created January 19, 2020 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crypticminds/71654d0889e2666e9ee06bad79f85e15 to your computer and use it in GitHub Desktop.
Save crypticminds/71654d0889e2666e9ee06bad79f85e15 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">
<!-- selected. This style will be applied when the view is selected -->
<item android:state_selected="true">
<shape>
<corners android:radius="12dp" />
<solid android:color="@android:color/black" />
</shape>
</item>
<!-- default -->
<item>
<shape>
<corners android:radius="12dp" />
<solid android:color="@android:color/white" />
</shape>
</item>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment