I am trying to set a Android EditText to be Multiline, and not display any suggestions.
textView.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
However, this is just a single line. Currently pressing the enter/carriage return button hides the keyboard, instead of moving to a new line.
textView.setImeOptions(EditorInfo.IME_FLAG_NO_ENTER_ACTION);
Setting the IME flag causes the enter button to insert whitespace. I need to display no suggestions and also have the EditText to be multiline. Am I missing something here?