Skip to content

Instantly share code, notes, and snippets.

@rafaelneiva
Created April 3, 2019 19:30
Show Gist options
  • Save rafaelneiva/7464bd234ff5ce77a3ce145f774468bb to your computer and use it in GitHub Desktop.
Save rafaelneiva/7464bd234ff5ce77a3ce145f774468bb to your computer and use it in GitHub Desktop.
Button background with states and ripple
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/rippleColor">
<item>
<selector>
<item android:state_enabled="false">
<shape android:shape="rectangle">
<solid android:color="@color/ac_colorGray" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/ac_colorBlue" />
</shape>
</item>
</selector>
</item>
</ripple>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment