user924
user924

Reputation: 12293

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

Upvotes: 1

Views: 712

Answers (1)

user924
user924

Reputation: 12293

Found a solution by using android:nextFocusForward:

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

Upvotes: 2

Related Questions