Mark O'Sullivan
Mark O'Sullivan

Reputation: 10788

EditText has two underlines

Getting quite frustrated with this issue.

I have got two underlines for all my EditText and I don't know why this is happening.

How do I remove the black underline color?

EditText has two underlines

Upvotes: 1

Views: 319

Answers (1)

PPartisan
PPartisan

Reputation: 8231

The turquoise underline is part of the default EditText widget background. You can remove it by setting the background XML attribute to @null.

The black underline is likely caused by predictive text. This can be corrected by adjusting your inputType, also in XML.

Upvotes: 4

Related Questions