views:

784

answers:

1

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?

+10  A: 

Try adding android:imeOptions="actionDone" to your EditText

http://developer.android.com/reference/android/widget/TextView.html#attr_android:imeActionLabel

Jim Blackler
That worked, thanks.
Andre Boos
You are welcome.
Jim Blackler