Last active
August 29, 2015 14:15
-
-
Save silmood/02533b64a459d1c39988 to your computer and use it in GitHub Desktop.
Selector & Ripple
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="RIPPLE_COLOR"> | |
| <item android:id="@+id/mask"> | |
| <shape> | |
| <solid android:color="BUTTON_COLOR"> | |
| </solid> | |
| </shape> | |
| </item> | |
| </ripple> |
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"?> | |
| <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