在webview中保存密码

时间:2014-08-28 14:31:05

标签: webview passwords save

为什么Android中的网络浏览器甚至可以为网站保存登录凭据,但是webview也不能这样做(保存API 18+之后的密码)。 我没有看到浏览器和网页浏览之间的差异。在浏览器中怎么可能?是否有可能在webview中保存凭据?

1 个答案:

答案 0 :(得分:0)

将此代码添加到您的Web视图:

mWebView.getSettings().setAppCachePath(getApplicationContext().getFilesDir().getAbsolutePath() + "/cache");
mWebView.getSettings().setDatabasePath(getApplicationContext().getFilesDir().getAbsolutePath() + "/databases");