xml -> EditText에 "android:focusable" 속성을 추가한 후 값을 false로 한다.
<EditText
android:id="@+id/editWord"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25sp"
android:focusable="false"
android:text="비밀번호"/>
'개발 공부 > Android' 카테고리의 다른 글
[Android] RecyclerView Item Ripple Effect(리플 적용하기) (0) | 2022.08.09 |
---|---|
[Android Kotlin] registerForActivityResult() 구현 (0) | 2022.08.07 |
[Android] EditeText password 보이기/숨기기 토글 (1) | 2022.08.04 |
[Android Kotlin] RecyclerView Animation Transition 구현하기 (0) | 2022.08.03 |
[Android Kotlin] Button 비활성화 설정 & Kotlin 코드로 Button Background 바꾸기 (0) | 2022.07.31 |