Bended
Bended

Reputation: 504

Remove auto-suggestion and it's layout

Hi I've been asked to remove the keyboard's auto-suggestion to save the screen space. I've managed to disable the auto suggest using

android:inputType="textNoSuggestions|textMultiLine"

but the layout is still shown, just no word suggestions. How can I tell the keyboard to hide the entire layout for auto suggestions? this is how it looks

Upvotes: 2

Views: 888

Answers (2)

jisturiz
jisturiz

Reputation: 25

Using android:inputType="textVisiblePassword" removes the autosuggest layout

Upvotes: 0

Fahim
Fahim

Reputation: 12378

Use this

android:inputType="textFilter"

I tried this and checked on lollipop. it doesn't show the suggestion bar

Upvotes: 1

Related Questions