EditTextの下線

EditTextはデフォルトで下線が表示されている。

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

下線ありのEditText

EditTextの下線を消す

EditTextandroid:backgoundプロパティを@nullにすると下線が消える。

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

下線ありのEditText