Turn off autosuggest for EditText on Samsung devices

91 Views Asked by At

Since the last update of my Samsung galaxy Tab A, some EditTexts (those who have "name" as id) show an "autosuggest bubble" when they are selected. enter image description here

I tried to remove them with

android:inputType="textFilter"

or

android:inputType="textNoSuggestions"

or

android:inputType="textVisiblePassword"

as shown on Turn off autosuggest for EditText?, but that had no effect. Do you think these bubbles-suggestions come from Samsung?

If I rename the EditText id to "namo" instead of "name", it works. But this is not a valid solution for me.

1

There are 1 best solutions below

0
G. Spyridakis On

Try the below:

android:inputType="textNoSuggestions|textVisiblePassword"