Is it possible to have an EditText that allows multilines and doesn't show the suggestions? I tried with this code:
android:inputType="textFilter|textMultiLine"
Which I saw in this question, but it didn't work for me. If I try to use both at the same time, the EditText supports multiline, but the suggestions appear. Separately, they work properly.
Is this a bug in the SDK? Or maybe it is not possible to combine them?
Thanks!