EditTextの下線
EditText
はデフォルトで下線が表示されている。
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
EditTextの下線を消す
EditText
のandroid:backgound
プロパティを@null
にすると下線が消える。
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null" />
\確かな知識を身に着けたい、Androidアプリ開発を学びたい人にオススメ!/