Reputation: 11958
I've searched for this problem but not found any answers for my case.
I have an AutoCompleteTextView and some strings as suggestions (city names).
Android marks them with red line.
I think it's Android's spell checker. How can I prevent spell checking?
Upvotes: 9
Views: 3972
Reputation: 3225
I am not sure but
You can use android:inputType="textNoSuggestions"
to get rid of suggestions and android:autoText
to false
for autocompletetextview.
The other possible way out will be to use android:inputType="textVisiblePassword"
You can have look at here
Upvotes: 6