I want to disable caching of entered text in EditText in Soft keyboard with autosuggestion of keyboard functionality on.I tried below code
android:inputType="textNoSuggestions|textMultiLine"
But it disabled the keyboard suggestion itself.I tried android:inputType="textFilter"
mentioned on link Turn off autosuggest for EditText But it didn't solved my purpose (I just want to disable caching not keyboard suggestion). Please help.