Disable Predictable Text in EditText

In EditText, if you want to set the filter,

android:inputType="textNoSuggestions|textUri"
edittext.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

Comments