Is it possible to have an EditText that allows multilines and doesn\'t show the suggestions? I tried with this code:
android:inputType=\"textFilter|textMulti
This is supposed to do what you want:
android:inputType="textFilter|textMultiLine|textNoSuggestions"
Although I haven't tried it myself. "textNoSuggestions" is only available since API 5.