Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EditText without line at bottom

I want to make my edit text field without the line at the bottom, like in this picture enter image description here Right now my edit text looks like this enter image description here How can I do it?

like image 403
Sartheris Stormhammer Avatar asked Dec 26 '14 11:12

Sartheris Stormhammer


1 Answers

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@null"/>

You can make it by setting the background to null

like image 62
Ye Min Htut Avatar answered Sep 20 '22 19:09

Ye Min Htut