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
Found a solution by using android:nextFocusForward
:
...
android:id="@+id/enter_password_edit_text"
android:imeOptions="actionNext"
android:nextFocusForward="@id/repeat_password_edit_text"
...