Skip to content

Instantly share code, notes, and snippets.

@Robotonics
Created May 18, 2013 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Robotonics/5606066 to your computer and use it in GitHub Desktop.
Save Robotonics/5606066 to your computer and use it in GitHub Desktop.
Background selector for menu button
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true"
android:state_pressed="false"
android:drawable="@drawable/menu_hover"
/>
<item android:state_focused="true"
android:state_pressed="true"
android:drawable="@drawable/menu_hover"
/>
<item android:state_focused="false"
android state_pressed="true"
android:drawable="@drawable/menu_hover"
/>
<item android:drawable="@drawable/menu_bg"/>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment