> For the complete documentation index, see [llms.txt](https://progjh.gitbook.io/today-i-learned/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://progjh.gitbook.io/today-i-learned/root/android/edittext.md).

# EditText

### 밑줄 라인 제거

```markup
android:background="@null"
```

### singleLine

EditText 의 경우 maxLines="1" 로는 singleLine 효과를 볼 수 없음.

```markup
android:singleLine="true"
```
