remove the bottom line in editText

Sometime you wondered how to change certain attributes of a EditText. but you want it to be applied globally across the app rather a individual edittext. So we always opted for styles.

I have come across interesting thing in Edit text to hide the line under the widget.

To hide the bottom line in Edit Text: set the background to @null

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

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s