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
Warning: it looks like this is API version dependent.
textFilter
option alone works for me on a tab running 3.1 (no suggestion when typing) but it does not work on a smartphone running 2.2 (still suggest when typing).
On 2.2 I use :
android:inputType="textVisiblePassword"
Annoying none the less if we have to check against all different API...