210202
[Kotlin] EditText의 엔터(<┘)를 완료로 바꾸기 + EditText에 내용이 없을 때 버튼을 못누르게 하기 본문
Android
[Kotlin] EditText의 엔터(<┘)를 완료로 바꾸기 + EditText에 내용이 없을 때 버튼을 못누르게 하기
dev210202 2020. 5. 19. 16:11EditText의 엔터를 바꾸는 방법은 다음과 같다.
1. xml파일에서 해당하는 EditText에 다음과 같이 추가한다
android:imeOptions="actionDone"
EditText에 내용이 없을 때 버튼을 못누르게 하는 방법은 다음과 같다.
1. EditText에 addTextChangedListener를 달아준다.
2. onTextChanged 함수에 if문으로 EditText에 내용이 있는지 확인해서 버튼을 사용할 수 없게 만든다.
내가 짠 코드는 다음과같다.(DataBinding 사용)
binding.linkinput.addTextChangedListener(object : TextWatcher {
override fun afterTextChanged(s: Editable?) {
}
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
}
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
if (linkinput.text.toString() == "") {
completeButton.isEnabled = false
completeButton.setBackgroundResource(R.drawable.createchat_complete_button_false_style)
} else if (linkinput.text.toString() != "") {
completeButton.isEnabled = true
completeButton.setBackgroundResource(R.drawable.createchat_complete_button_true_style)
}
}
})
'Android' 카테고리의 다른 글
Material CalendarView 날짜 선택 시 배경 바꾸기 (6) | 2020.11.23 |
---|---|
XML에서는 text가 잘 보이는데 실제 실행 시 TextView나 다른 View의 text가 보이지 않는 오류 (0) | 2020.05.19 |
[Kotlin] 움직이는(GIF) ProgressDialog로 로딩처리 (2) | 2020.05.16 |
[Kotlin] RecyclerView를 ListView의 단일선택처럼 사용하기 (0) | 2020.03.20 |
Kotlin 데이터 바인딩과 네비게이션을 사용하여 프래그먼트 구현 + 몇가지 오류들 해결 (0) | 2020.03.09 |
Comments