본문 바로가기
IT/Android

Kotlin] 안드로이드 키보드 검색

by 깻잎쌈 2021. 3. 23.
반응형

xml

 <EditText
 ....                
 android:imeOptions="actionSearch"
  ...              />

 

 

editText.setOnEditorActionListener { v, actionId, event ->
            when (actionId) {
                EditorInfo.IME_ACTION_SEARCH -> {} 
                else -> {
                }
            }
            false
}
반응형

댓글