Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EditText and go to next

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?

like image 570
user1302569 Avatar asked Jan 20 '26 11:01

user1302569


1 Answers

Add this in the last editText

android:imeOptions="actionDone"
like image 134
Faizan Avatar answered Jan 23 '26 00:01

Faizan