spinner.setOnItemSelectedListener가 안보여서 당황했지만, 코틀린은 get/set 형태로 코딩하지 않는 다는 것을 순간 깨달았다.
spinner.onItemSelectedListener = object : AdapterView.OnItemSelectedListener {
override fun onItemSelected(parent: AdapterView<*>?, view: View?, position: Int, id: Long) {
}
override fun onNothingSelected(parent: AdapterView<*>?) {
}
}
'프로그래밍 > android' 카테고리의 다른 글
[android] imeOptions actionDone 또는 actionSend multiline 적용하기 (IME_ACTION_DONE, IME_ACTION_SEND) (0) | 2021.06.23 |
---|---|
[android] 방해금지모드 확인 (Do not disturb mode) (0) | 2021.06.15 |
[android] DialogFragment keyEvent (키 이벤트 수신) (0) | 2021.06.04 |
android PIP 예제 샘플 구현. 생각보다 쉽네 ~ (0) | 2021.05.18 |
AlertDialog.Builder change background color (0) | 2021.04.08 |