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 this?
This problem vexed me for quite a while but the solution is very simple:
webview.getSettings().setSaveFormData(false);
I wrote about it here:
http://roysutton.com/2012/02/21/preventing-auto-fill-in-android-webview/
2.1m questions
2.1m answers
60 comments
57.0k users