티스토리 뷰

반응형

예를 들면 로그인 액티비티에서 마지막 항목을 입력 한 후,

완료 버튼을 누르지 않고 키보드에서 바로 로그인 할 수 있도록 완료 이벤트를 설정하는 방법이다.

 

 

editText.setOnEditorActionListener{ textView, action, event ->
            var handled = false
            if (action == EditorInfo.IME_ACTION_DONE) {
                login()
                handled = true
            }
            handled
        }

 

 

 

 

참고

https://stackoverflow.com/questions/47083396/how-to-use-keyevent-in-kotlin/47112088#47112088

 

How to use KeyEvent in Kotlin

This my first kotlin/java code. I want learn from this. When I push "OK" button of Android keyboard, I want my app do same thing as when I push my button with android:onClick="onAnswerClick" I kn...

stackoverflow.com

 

 

반응형