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
In Android 8 and above, you should set importance of a textview subclass for system auto-fill feature:
android:importantForAutofill="noExcludeDescendants"
Official reference: Optimize your app for autofill
Furthermore, You might try to delete the "Web Data" sqlite file in data/data/{your-app-package}/app_webview when webview isn't in use for security's sake.