I have a WebView which has a form containing 10 editboxes. When I type in an editbox I find that in the softkey keyboard Go button is visib
In the xml, specifiy for your editboxes the attribute android:imeOptions="actionNext" . The next button will bring the user into the next field that accept input.
android:imeOptions="actionNext"
Take a look at http://developer.android.com/resources/samples/SoftKeyboard/index.html which may help you.