밑줄 없애는 방법은 정말 간단하다
android:background="@null" 이 문장만 추가해주면 된다.
1
2
3
4
5
6
7
8
9
|
<EditText
android:"@+id/EditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content" // 기본 EditText속성에서
android:background="@null" // 이 문장을 추가해준다
/>
|
cs |