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.

4

1 回答 1

-1

试试下面的:

android:inputType="textNoSuggestions|textVisiblePassword"
于 2018-12-14T18:31:40.290 回答