1

Possible Duplicate:
how to disable spell correction programmatically in android

I need to disable the dictionary programatically. How do I do this?

Community
  • 1
  • 1
user1324068
  • 267
  • 3
  • 7
  • 17

1 Answers1

1

You can use this in your activity

setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS)
Android
  • 3,828
  • 9
  • 46
  • 79