-
-
Save douglasdrumond/c21f3d67e140816d8774 to your computer and use it in GitHub Desktop.
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"?> | |
| <resources> | |
| <color name="grey">#cccccc</color> | |
| <color name="sunshine_light_blue">#ff64c2f4</color> | |
| </resources> |
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"> | |
| <!-- State when a row is being pressed, but hasn't yet been activated (finger down) --> | |
| <item android:state_pressed="true" | |
| android:drawable="@color/grey" /> | |
| <!-- Used when the view is "activated". --> | |
| <item android:state_activated="true" | |
| android:drawable="@color/sunshine_light_blue" /> | |
| <!-- Default, "just hangin' out" state. --> | |
| <item android:drawable="@android:color/transparent" /> | |
| </selector> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment