Change the text correction function

I have a little question about Android.

I want to enable " Text Correction " from the keyboard programmatically . I can send the user to the " Language and input " settings screen . But I want to enable this feature programmatically without going to this screen. How can I do this in android.

Thanks in advance.

+4
source share
1 answer

Android: inputType = "textCapSentences | textAutoCorrect" Use this inside your EditText.

0
source

Source: https://habr.com/ru/post/1670371/


All Articles