EditText를 사용하면 EditText의 너비만큼 자동으로 밑줄이 생성되어있다.
기본으로 생성되는 밑줄
이 밑줄을 제거하기 위해서는 EditText의 속성에
android:background="@android:color/transparent"
혹은
android:background="@null"
로 밑줄을 제거할 수 있다.
밑줄이 제거된 상태
그런데 이렇게되면 텍스트창의 커서까지도 사라져버린다.
이 커서를 다시 만들어주기 위해서 /res/drawable 폴더에 text_cursor.xml 파일을 만든다.
이 때, cursor의 색상은 미리 /res/values/colors 폴더에 지정해놓는다.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!--커서의 색깔-->
<solid android:color="@color/cursorColor"/>
<!--커서의 굵기-->
<size android:width="2dp" />
</shape>
/res/drawable/text_cursor.xml
그 다음에 EditText의 속성에 android:textCursorDrawable="@drawable/text_cursor" 를 추가한다.
커스텀된 커서
android:inputType="textNoSuggestions|textVisiblePassword"
또한 EditText의 속성을 사용해서 키보드의 단어 제안을 없앨 수 있다.
키보드에서 추천단어가 사라진 상태
'프로그래밍 > Android' 카테고리의 다른 글
[Android] getExternalStorageDirectory() deprecated (0) | 2023.05.24 |
---|---|
[Android Studio] AVD 실행시 no longer exists 에러 (0) | 2023.05.15 |
[Android] 스크롤시 상단바 숨기기, CoordinatorLayout (0) | 2023.04.18 |
[Android] TableLayout (0) | 2023.04.17 |
[Android] Dialog 중복생성 방지 (0) | 2023.04.14 |
댓글