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?

link|improve this question

feedback

2 Answers

up vote 24 down vote accepted

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

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

link|improve this answer
That worked, thanks. – Andre Boos Apr 2 '10 at 19:40
You are welcome. – Jim Blackler Apr 2 '10 at 19:46
feedback

This can also be accomplished in code with:

myEditText.setImeOptions(EditorInfo.IME_ACTION_DONE);
link|improve this answer
that worked for me too.. thanks.. – cavallo Jan 9 at 13:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.