I am trying to have an EditText
with the following characteristics when editing with a soft key. I ready the documentation, searched here, play with the parameters
This combination (and the specific order of the EditText
method calls) should produce the configuration that you want:
editText.setInputType(
InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);
editText.setSingleLine(true);
editText.setLines(4); // desired number of lines
editText.setHorizontallyScrolling(false);
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);