I would like to change the Orange border around a EditText. Like when the input is valid, I want it to become green.

alt text

However I do not seem to find a method to do this. Is it possible?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

It's not possible to change the orange border easily because it's actually a 9-patch - that is, the entire border + white background is a 9-patch that Android uses by default. It uses the android:background attribute to set it, too.

It would be possible to acquire a copy of the 9-patch (it will be in your SDK), edit the color to make it green, then in code configure it so that your 9-patch is set as the background of the EditText when the input is valid.

link|improve this answer
3  
Also, bear in mind that the background really is a StateListDrawable, of which the orange-border nine-patch PNG is just one of the images for one of the states. – CommonsWare Apr 25 '10 at 16:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.