Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

android - Removing the background color of an EditText

I have an editText and i want to set its background color to red like this:

 RegistrationCountry.setBackgroundColor(Color.RED);

Now i yould like to remove this background color. The problem using:

RegistrationCountry.setBackgroundColor(Color.TRANSPARENT);

Is that i will lose the Edittext outline.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use

RegistrationCountry.setBackgroundResource(android.R.drawable.editbox_background);

To set the background to the standard background-image.

The problem arises when you call any of the setBackgroundX() methods, as this will replace the current background (i.e. the 'outline'), so when you call setBackgroundColor(Color.RED) you replace the outline with a red color, and then you replace the red with transparency. What you need to do is to replace the red with the original background, as can be done with the line above.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...