Skip to content

Instantly share code, notes, and snippets.

@pacificregmi
Created January 22, 2016 11:08
Show Gist options
  • Save pacificregmi/d7740218e22313420c97 to your computer and use it in GitHub Desktop.
Save pacificregmi/d7740218e22313420c97 to your computer and use it in GitHub Desktop.
Android Custom Vertical Dropdown Icons Menu - drawable/onclick_press_color.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/black" android:state_focused="true" android:state_pressed="true" />
<item android:drawable="@color/black" android:state_focused="false" android:state_pressed="true" />
<item android:drawable="@color/light_black" />
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment