Search code examples
androidandroid-edittextandroid-textinputlayoutandroid-textinputedittext

imeOptions="actionNext" doesn't move to next EditText but focuses


I have android:imeOptions="actionNext" for "enter pin" EditText

and android:imeOptions="actionDone" for "repeat pin" EditText

But when it's focused on "enter pin" and I press next button on keyboard it focuses to password eye-icon of the same "enter pin" EditText instead of "repeat pin" EditText

enter image description here

enter image description here


Solution

  • Found a solution by using android:nextFocusForward:

    ...
    android:id="@+id/enter_password_edit_text"
    android:imeOptions="actionNext"
    android:nextFocusForward="@id/repeat_password_edit_text"
    ...