2

我有一个加载网页的应用程序,它可以在线运行。我已经在我的页面中添加了一个 cache.manifest 文件,这在我的安卓手机上使用浏览器以及在我的桌面上进行测试时似乎效果很好。

打开应用程序时,我打开了几页,它们被缓存了。

之后,我禁用所有 Wifi 和 3G 连接,然后重新打开应用程序。此时,我之前打开的页面可以显示,但我没有打开的页面给我错误:“网页不可用”。

所以这意味着一些缓存已经完成,但 webviewclient 实际上并没有缓存我的 cache.manifest 文件中显示的所有内容。

可以在此处找到示例页面:http ://www.mobileevolution.be/apps/FitceCongress/android/gsm/home.php

清单包含以下信息:

CACHE MANIFEST
# 30-05-2013 20h11 1152gg2dfdfdfd

CACHE:
committees.php
congressprogram.php
home.php
../../congressprogram.xml
../../partnerprogram.xml
information.php
partnerprogram.php
sponsors.php
style/style.css
registration.php
http://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900
http://themes.googleusercontent.com/static/fonts/roboto/v8/Hgo13k-tfSpn0qi1SFdUfT8E0i7KZn-EPnyo3HZu7kw.woff
http://themes.googleusercontent.com/static/fonts/roboto/v8/2UX7WLTfW3W8TclTUvlFyQ.woff
http://themes.googleusercontent.com/static/fonts/roboto/v8/RxZJdnzeo3R5zSexge8UUT8E0i7KZn-EPnyo3HZu7kw.woff
http://themes.googleusercontent.com/static/fonts/roboto/v8/d-6IYplOFocCacKzxwXSOD8E0i7KZn-EPnyo3HZu7kw.woff
http://themes.googleusercontent.com/static/fonts/roboto/v8/mnpfi9pxYH-Go5UiibESIj8E0i7KZn-EPnyo3HZu7kw.woff
http://themes.googleusercontent.com/static/fonts/roboto/v8/Hgo13k-tfSpn0qi1SFdUffY6323mHUZFJMgTvxaG2iE.eot
http://themes.googleusercontent.com/static/fonts/roboto/v8/5YB-ifwqHP20Yn46l_BDhA.eot
http://themes.googleusercontent.com/static/fonts/roboto/v8/RxZJdnzeo3R5zSexge8UUfY6323mHUZFJMgTvxaG2iE.eot
http://themes.googleusercontent.com/static/fonts/roboto/v8/d-6IYplOFocCacKzxwXSOPY6323mHUZFJMgTvxaG2iE.eot
http://themes.googleusercontent.com/static/fonts/roboto/v8/mnpfi9pxYH-Go5UiibESIvY6323mHUZFJMgTvxaG2iE.eot

根据此论坛上的其他主题,Android 中的缓存设置似乎是正确的:

webView1.getSettings().setJavaScriptEnabled(true); // enable javascript

cm = (ConnectivityManager) this.getSystemService(Activity.CONNECTIVITY_SERVICE);
        if(cm != null && cm.getActiveNetworkInfo() != null && cm.getActiveNetworkInfo().isConnected()){
            webView1.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);
        }
        else{
            webView1.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ONLY);
        }

        webView1.getSettings().setDomStorageEnabled(true);
        webView1.getSettings().setAppCacheMaxSize(1024 * 1024 * 8);

        String appCachePath = getApplicationContext().getCacheDir()
                .getAbsolutePath();

        webView1.getSettings().setAppCachePath("/data/data/be.mobileevolution.fitcecongress/cache");
        //webView1.getSettings().setAppCachePath(appCachePath);
        webView1.getSettings().setAllowFileAccess(true);
        webView1.getSettings().setAppCacheEnabled(true);

我正在像这样创建 webviewclient:

webView1.setWebViewClient(new WebViewClient(){ 

我认为以下线程与我的问题相同,但没有给出真正的答案:Webview not loading offline cached data

有没有人澄清为什么 cache.manifest 中的所有文件都没有被下载到应用程序上?或者也许 cache.manifest 在 webview 中根本不起作用,并且缓存是由应用程序本机完成的?但在浏览器中它工作正常!

谢谢,Grts,拉尔斯

4

1 回答 1

0

您的 HTML5 应用程序中是否有在离线之前下载所有网页和数据的例程?

var appCache = window.applicationCache; appCache.update();

另外 - WebSettings.LOAD_DEFAULT 对我有用,无论我是在线还是离线。

于 2013-07-05T14:27:40.550 回答