Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 658
Buda Gavril Avatar asked Apr 16 '26 07:04

Buda Gavril


1 Answers

There is a deprecated method:

android:autoText="false"

check if this does the job for you.

like image 87
Pallavi Avatar answered Apr 17 '26 20:04

Pallavi