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

前端 未结 6 633
难免孤独
难免孤独 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条回答
  •  猫巷女王i
    2020-12-15 17:33

    I have all the above and used the app on my Huawei Ascend P7, which is running higher than 18. But for some reason I am still seeing a confirmation box saying "Do you want the browser to remember this password?"

    What could be the reasons of this popup. I have tried the below code.

    _viewSettings.setSavePassword(false);  
    if (Build.VERSION.SDK_INT <= 18) {  
        _viewSettings.setSavePassword(false);  
    }  
    _view.loadUrl(url);
    

    Note: The above doesnt show any save message on Samsung devices.

提交回复
热议问题