How to disable the “save password” dialog on an Android WebView?

前端 未结 6 629
难免孤独
难免孤独 2020-12-15 17:18

I\'d like to know how to prevent an Android WebView form asking to save the \"password-data\" from a html form?

May you can help me out on this?

6条回答
  •  借酒劲吻你
    2020-12-15 17:41

    Its not so depreciated as you might think, I had to remove the version check as I was getting the prompt on a Huawei 5.01 device and disable FormData as well...

        webview.getSettings().setSavePassword(false);
        webview.getSettings().setSaveFormData(false);
    

提交回复
热议问题