Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the Android softkey keyboard "Go" button to "Next"

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 visible which eventually takes me to the next page. But I want Next button which should take me to the next editbox, not to the next page. So, how to change the softkey keyboard "Go" button to "Next" in Android?

like image 640
Ron Avatar asked Dec 22 '22 12:12

Ron


2 Answers

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.

like image 160
Marco Grassi Avatar answered Dec 27 '22 01:12

Marco Grassi


Take a look at http://developer.android.com/resources/samples/SoftKeyboard/index.html which may help you.

like image 21
Vinayak Bevinakatti Avatar answered Dec 27 '22 02:12

Vinayak Bevinakatti