我的一个活动中有一个 WebView,当它加载一个网页时,该页面会从 Facebook 收集一些背景数据。
但我看到的是,每次打开和刷新应用程序时,应用程序中显示的页面都是相同的。
我已经尝试设置 WebView 不使用缓存并清除缓存和 WebView 的历史记录。
我在这里也遵循了这个建议: 如何为 WebView 清空缓存?
但是这些都没有用,有人知道我能克服这个问题吗? 因为它是我应用程序的重要组成部分。
mWebView.setWebChromeClient(new WebChromeClient()
{
public void onProgressChanged(WebView view, int progress)
{
if(progress >= 100)
{
mProgressBar.setVisibility(ProgressBar.INVISIBLE);
}
else
{
mProgressBar.setVisibility(ProgressBar.VISIBLE);
}
}
});
mWebView.setWebViewClient(new SignInFBWebViewClient(mUIHandler));
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.clearHistory();
mWebView.clearFormData();
mWebView.clearCache(true);
WebSettings webSettings = mWebView.getSettings();
webSettings.setCacheMode(WebSettings.LOAD_NO_CACHE);
Time time = new Time();
time.setToNow();
mWebView.loadUrl(mSocialProxy.getSignInURL()+"?time="+time.format("%Y%m%d%H%M%S"));
因此,我实现了第一个建议(尽管将代码更改为递归的)
private void clearApplicationCache() {
File dir = getCacheDir();
if (dir != null && dir.isDirectory()) {
try {
ArrayList<File> stack = new ArrayList<File>();
// Initialise the list
File[] children = dir.listFiles();
for (File child : children) {
stack.add(child);
}
while (stack.size() > 0) {
Log.v(TAG, LOG_START + "Clearing the stack - " + stack.size());
File f = stack.get(stack.size() - 1);
if (f.isDirectory() == true) {
boolean empty = f.delete();
if (empty == false) {
File[] files = f.listFiles();
if (files.length != 0) {
for (File tmp : files) {
stack.add(tmp);
}
}
} else {
stack.remove(stack.size() - 1);
}
} else {
f.delete();
stack.remove(stack.size() - 1);
}
}
} catch (Exception e) {
Log.e(TAG, LOG_START + "Failed to clean the cache");
}
}
}
但是这仍然没有改变页面显示的内容。在我的桌面浏览器上,我得到了不同的 HTML 代码的网页产生的网络视图,所以我知道网络视图必须缓存的地方。
在 IRC 频道上,我被指向一个从 URL 连接中删除缓存的修复程序,但是还不知道如何将它应用到 WebView 中。
Http://www.androidsnippets.org/snippets/45/
如果我删除我的应用程式并重新安装它,我可以让网页重新更新,即非缓存版本。主要问题是网页中的链接发生了变化,所以网页的前端完全没有变化。