1

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

user924
  • 8,146
  • 7
  • 57
  • 139

1 Answers1

1

Found a solution by using android:nextFocusForward:

...
android:id="@+id/enter_password_edit_text"
android:imeOptions="actionNext"
android:nextFocusForward="@id/repeat_password_edit_text"
...
user924
  • 8,146
  • 7
  • 57
  • 139