How to turnOff suggestions in editText in ANDROID?

By | March 4, 2011

Sometimes we may not need suggestions to appear in the textbox in our application in ANDROID.
This simple codes turns off this suggestion ….
Put this code inside your editText tag in the layout xml file.

android:inputType="textNoSuggestions"

if the above code is not working try this…

android:inputType="textNoSuggestions|textVisiblePassword"

Please leave your valuable comments………..

Leave a Reply

Your email address will not be published. Required fields are marked *