I have some HTML text inputs into a WebView, and I need to disable the autosuggetions on these inputs from Android, not from HTML (autocomplete=off).
How can I do th
If it already has the form data then setSaveFormData(false) won't stop it from using it. To clear the database you may have to do the following:
setSaveFormData(false)
WebViewDatabase.getInstance(this).clearFormData();