我的一个活动中有一个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代码与WebView中生成的网页不同,因此我知道WebView必须缓存在某个地方。
在IRC频道上,我被指出了一个修复程序,用于从URL连接中删除缓存,但是目前还看不到如何将其应用于WebView。
http://www.androidsnippets.org/snippets/45/
如果删除我的应用程序并重新安装,我可以使网页恢复最新状态,即非缓存版本。主要问题是对网页中的链接进行了更改,因此网页的前端完全不变。
mWebView.getSettings().setAppCacheEnabled(false);
没有工作?