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
Just add
editText.setHorizontallyScrolling(false);
editText.setMaxLines(Integer.MAX_VALUE);
with your edittext instance in your activity programmatically.
It configures the EditText instance so that the user edits a single-line string that is displayed with soft-wrapping on multiple lines with IME options.