Created
March 25, 2015 06:37
-
-
Save TakWolf/e5c254b73bea861b336d to your computer and use it in GitHub Desktop.
android-ripple.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | |
android:color="#908967"> | |
<item> | |
<selector> | |
<item android:state_enabled="false" android:drawable="@drawable/button_pressed" /> | |
<item android:state_focused="true" android:drawable="@drawable/button_pressed" /> | |
<item android:drawable="@drawable/button_normal" /> | |
</selector> | |
</item> | |
</ripple> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment