How to Automatically Correct Some Spelling Errors in a TextView
added in API Level 1, Deprecated in API Level 3
android:autoText: If set, specifies that this TextView has a textual input method and automatically corrects some common spelling errors. The default is "false".1. Create an Android project, if you don't already have one.
2. Add a TextView.
3. In the main.xml file, add the below lines (the android:text change is for testing purposes only. Misspelling of Thisd was on purpose)
<TextView
....
android:text="Thisd is a textview."
android:autoText = "true"
/>
4. Compile and run!
Resources: