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 uses the software ke
Try adding android:imeOptions="actionDone" to your EditText.
android:imeOptions="actionDone"
EditText
Reference
This can also be accomplished in code with:
myEditText.setImeOptions(EditorInfo.IME_ACTION_DONE);