How to disable auto-complete and auto-correct of EditText
Try this... Add to your xml.
android:inputType="textNoSuggestions"
Add this line into your EditText.
android:inputType="textFilter"
Here is a Tip. Use this line if you want to be able to use the "enter" key.
android:inputType="textFilter|textMultiLine"
Check this link too:
Android programmatically disable autocomplete/autosuggest for EditText in emulator