I\'m defining an edit text like so...
android:imeOptions="actionNext"
It replaces the name of the enter key with "Next" in the virtual keyboard and by clicking on it - focus jumps to the next field
In your layout, you would do things like this
And in Java
TextView field2 = (TextView) field1.focusSearch(View.FOCUS_RIGHT);
field2.requestFocus();
It's up to you to decide which field will request focus next.