Skip to content

Instantly share code, notes, and snippets.

@rafaelneiva
Last active June 10, 2019 19:23
Show Gist options
  • Save rafaelneiva/5db31caa30da598567ae1fac40f4d1b3 to your computer and use it in GitHub Desktop.
Save rafaelneiva/5db31caa30da598567ae1fac40f4d1b3 to your computer and use it in GitHub Desktop.
Android button theme with selector
<selector
xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="100">
<item android:state_pressed="true">
<shape android:shape="oval">
<solid android:color="?attr/colorPrimaryAlpha" />
</shape>
</item>
<item android:state_focused="true">
<shape android:shape="oval">
<solid android:color="?attr/colorPrimaryAlpha" />
</shape>
</item>
<item>
<shape android:shape="oval">
<solid android:color="?attr/colorPrimary" />
</shape>
</item>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment