Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 47 down vote accepted

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

Reference

share|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
but after selecting the text in edittext, Done button changes in to EDIT button and show cut,copy,paste..how to disable this. – Cobra Ajgar Dec 27 '12 at 10:14

This can also be accomplished in code with:

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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