How to add "Next" on android keyboard
android, focus, keyboard
Solution
You just have to use the imeOptions tag in your layout. See imeOptions in docu.
<EditText
android:id="@+id/someField"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeOptions="actionNext"/>
Problem
I've seen in some applications that in the keyboard appears a Button called next that puts the focus on the next Edit Text. I want to add this in my application, Do you know how I can do it? Or it's only on the application's keyboard? Thanks a lot. Sorry, I haven't more information about this.