I have a bunch of EditTexts in my Android application, each with InputMethod set to numberSigned. My target device does not have a hardware keyboard and thusly uses the software keyboard for numeric entry. Android attempts to be user-friendly and replaces the standard "Done" button to the right of the entry box with a "Next" button, probably because it recognizes the presence of other EditTexts. My application does not need this functionality, and in fact impairs the functionality of the application. How do I remove or disable that functionality?
|
feedback
|
|
Try adding http://developer.android.com/reference/android/widget/TextView.html#attr_android:imeActionLabel | |||||
|
feedback
|
|
This can also be accomplished in code with:
| |||
|
feedback
|