Disabling autosuggestion on WebView?

前端 未结 8 1012
盖世英雄少女心
盖世英雄少女心 2020-12-10 11:13

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

8条回答
  •  天命终不由人
    2020-12-10 11:35

    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/

提交回复
热议问题