Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android edit text issue showing blue line at bottom

I don't want this line in EditText see image m

is that because of android them color. what should i do to remove this line.and I want the screen Them without ActionBar.

like image 242
Matthew Avatar asked Jun 16 '14 11:06

Matthew


People also ask

How do I turn off edit text on Android?

To disable an EditText while keeping this properties, just use UI. setReadOnly(myEditText, true) from this library. If you want to replicate this behaviour without the library, check out the source code for this small method.

What is edit text in Android?

A EditText is an overlay over TextView that configures itself to be editable. It is the predefined subclass of TextView that includes rich editing capabilities.


1 Answers

Just add android:background="#00000000" to your EditText in XML file
Or android:background="@android:color/transparent"

like image 53
frogatto Avatar answered Sep 28 '22 01:09

frogatto