Reputation: 10788
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?
Upvotes: 1
Views: 319
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