0

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.

Prags
  • 2,457
  • 2
  • 21
  • 38
Greelings
  • 4,964
  • 7
  • 34
  • 70

1 Answers1

-1

Try the below:

android:inputType="textNoSuggestions|textVisiblePassword"
G. Spyridakis
  • 431
  • 1
  • 10
  • 21