views:

416

answers:

1

Hi!

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!

+2  A: 

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.

lightversusdark