setImeOptions: why the "Done" button does not show on the soft keyboard? setImeOptions: why the "Done" button does not show on the soft keyboard? android android

setImeOptions: why the "Done" button does not show on the soft keyboard?


It's probably because your input field is not single-lined.

Try adding

input.setSingleLine();

And you will see that pressing the action key of the keyboard will actually perform a 'done' action (i.e close the keyboard)

See http://developer.android.com/reference/android/view/inputmethod/EditorInfo.html#IME_ACTION_DONE