Could you tell us where your button is in your layout? Better yet, just copy the xml layout here. You may be seeing some bleeding through of another view under your button. On that note, try making the button the only thing on the screen and see what that does.
Doug On Jan 28, 10:13 am, Jarrette <[email protected]> wrote: > 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

