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"/>