在 webview 中保存密码
Posted
技术标签:
【中文标题】在 webview 中保存密码【英文标题】:Saving password in webview 【发布时间】:2014-08-28 14:31:05 【问题描述】:为什么 android 中的 Web 浏览器即使现在也可以保存网站的登录凭据,但 Webview 却不能这样做(保存密码在 API 18+ 之后被弃用)。 我看不出浏览器和 webview 之间有什么区别。在浏览器中怎么可能?是否可以在 webview 中保存凭据?
【问题讨论】:
【参考方案1】:将此代码添加到您的网络视图中:
mWebView.getSettings().setAppCachePath(getApplicationContext().getFilesDir().getAbsolutePath() + "/cache");
mWebView.getSettings().setDatabasePath(getApplicationContext().getFilesDir().getAbsolutePath() + "/databases");
【讨论】:
以上是关于在 webview 中保存密码的主要内容,如果未能解决你的问题,请参考以下文章