Reputation: 7191
I have some EditTexts in my application and I am using:android:nextFocusDown="@+id/last_name_edit_text"
to go to next editText push "Next" button. I have a problem with last EditText. I want to add when this is last EditText I want to change button next on finish button. How I can do that in xml?
Upvotes: 3
Views: 1006
Reputation: 56925
Use android:imeOptions="actionDone"
on last edittext
For Next - android:imeOptions="actionNext"
For Done - android:imeOptions="actionDone"
Upvotes: 1
Reputation: 21
android:imeOptions="actionDone"
Followings may help you
Upvotes: 2