Skip to content

Instantly share code, notes, and snippets.

@johnkil
Last active January 4, 2016 00:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save johnkil/8540787 to your computer and use it in GitHub Desktop.
Save johnkil/8540787 to your computer and use it in GitHub Desktop.
Android 4.4 KitKat list selector
<?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="#1A000000"/>
</shape>
</item>
<item android:state_focused="true">
<shape>
<solid android:color="#77000000"/>
</shape>
</item>
<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