Reputation: 504
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?
Upvotes: 2
Views: 888
Reputation: 25
Using android:inputType="textVisiblePassword" removes the autosuggest layout
Upvotes: 0
Reputation: 12378
Use this
android:inputType="textFilter"
I tried this and checked on lollipop. it doesn't show the suggestion bar
Upvotes: 1