I made a custom background for the buttons in my app.  Here is my 
"btn_blue.xml" markup....

<?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/btn_blue_pressed" />
    <item android:state_focused="true" 
      android:state_pressed="true"
      android:drawable="@drawable/btn_blue_pressed" />
    <item android:state_focused="false" 
      android:state_pressed="true"
    android:drawable="@drawable/btn_blue_pressed" />
    <item android:drawable="@drawable/btn_blue_normal" />
</selector>

Everything seems to work fine - except for one thing.  When I press the 
button, my "pressed" image appears, however "behind" the image, is an orange 
background color....
Does anyone know how to get rid of this?  


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to