Skip to content

Instantly share code, notes, and snippets.

@silmood
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save silmood/02533b64a459d1c39988 to your computer and use it in GitHub Desktop.

Select an option

Save silmood/02533b64a459d1c39988 to your computer and use it in GitHub Desktop.
Selector & Ripple
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="RIPPLE_COLOR">
<item android:id="@+id/mask">
<shape>
<solid android:color="BUTTON_COLOR">
</solid>
</shape>
</item>
</ripple>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape>
<solid android:color="BUTTON_COLOR_PRESSED"/>
</shape>
</item>
<item>
<shape>
<solid android:color="BUTTON_COLOR"/>
</shape>
</item>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment