this don't work, this is my full part of code ``` ...
# android
q
this don't work, this is my full part of code
Copy code
editText.setOnEditorActionListener { v, actionId, event ->
        logD(TAG, "actionId: $actionId IME_ACTION_DONE: ${EditorInfo.IME_ACTION_DONE}")

        when (actionId) {
            EditorInfo.IME_ACTION_DONE -> {
                action(getValueForNumberDialog(editText))
                true
            }
            else -> false
        }
    }