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………..