0

I noticed with some apps/and even accessing websites on the phone, that my phone keyboard does not provide me with the auto correction feature.

I was wondering , is it possible to disable the auto correction in my app when someone clicks on EditText?

Thank you

Snake
  • 14,228
  • 27
  • 117
  • 250

1 Answers1

1

Try adding

android:inputType="text|textNoSuggestions"

in you xml.

Please see how to avoid soft keyboard showing auto correct suggestion?

Update

After reading How to disable displaying "suggestions" on the Soft Keyboard it seems the above will not work in a few rare cases.

Therefore, a safer way to go would be to use

android:inputType="textNoSuggestions|textVisiblePassword"

or

android:inputType="textFilter"
Community
  • 1
  • 1
AmmarCSE
  • 30,079
  • 5
  • 45
  • 53