tags:

views:

40

answers:

1

I am working on an app that has multiple edittext fields and spinners and i want the focus to be switched to the next edittext box down when a selection is made from the spinner above.

Help

A: 

You could add an ItemSelectedListener to your spinner, and call requestFocus on the next editBox.

Mayra