Hi I want to open keypad when the EditText
is focused , with GO
in place of Next and Done Buttons.
I used
android:imeOptions="actionGo"
in EditText
xml tag but it's only showing an arrow not GO.
Thanks in advance
Hi I want to open keypad when the EditText
is focused , with GO
in place of Next and Done Buttons.
I used
android:imeOptions="actionGo"
in EditText
xml tag but it's only showing an arrow not GO.
Thanks in advance
The keyboard itself decides what to show, based on its own set of choices. There is no way to force it to show anything, and not all keyboards will decide based on the same things. You can improve your odds by only using 1 of those options and by making sure its not multiline (many keyboards will not remove their enter key in a multiline edit field), but its still up to the keyboard.