반응형
In EditText, apply keyboard first letter capitalization option along with changing to done button
EditText에서 완료 버튼으로 변경과 함께 키보드 첫 글자 대문자 옵션 적용
You cannot apply the above two functions together from EditText to xml.
However, if implemented programmatically with kotlin as below, it works normally.
fun EditText.setImeDone() {
imeOptions = EditorInfo.IME_ACTION_DONE
setRawInputType(InputType.TYPE_TEXT_FLAG_MULTI_LINE or EditorInfo.TYPE_TEXT_FLAG_CAP_SENTENCES)
isSingleLine = false
}
반응형
'프로그래밍 > App 개발' 카테고리의 다른 글
[Android] File templates (BottomSheet) (1) | 2023.11.02 |
---|---|
[Android] File Templates (Dialog) (0) | 2023.11.02 |
[Android] 키보드 Done 으로 변경하기 (개행 막기) (0) | 2022.10.06 |
[Android] 반복알림(notification) 구현 (4) | 2022.06.13 |
[Android] SharedPreferences generic (kotlin) (2) | 2022.03.03 |