Reputation: 21647
Is it possible to have an editText with suggestions ON but autocorrection OFF ? I've tried:
android:inputType="textFilter"
android:inputType="textFilter|textNoSuggestions"
but these line of code disable suggestions. So how can I disable only autocorrection?
Upvotes: 3
Views: 2558
Reputation: 3174
There is a deprecated method:
android:autoText="false"
check if this does the job for you.
Upvotes: 1