In my application I have several EditText.
When the User clicks on the first, the keyboard appears, enter the value he and ready.
It’s okay, but I wanted when I finished typing the value had an OK button, or complete.
On the keyboard that is shown is only a forward button, which goes straight to the next value of EditText.
I do not want to be next EditText.
I do not know happened to intender.
thank you
It sounds like you want the soft keyboard to show a Done button instead of the Next button.
In your XML for the EditText, add:
android:imeOptions="actionDone"Alternatively, you can do it via code:
yourEditText.setImeOptions(EditorInfo.IME_ACTION_DONE);