Buda Gavril
Buda Gavril

Reputation: 21647

android editText disable autocorrection

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

Answers (1)

PrincessLeiha
PrincessLeiha

Reputation: 3174

There is a deprecated method:

android:autoText="false"

check if this does the job for you.

Upvotes: 1

Related Questions