查明 Android WebView 是否显示缓存页面
我正在制作一个 Android 应用程序,除其他外,它还可以在网络视图中显示网站。据我了解,如果无法建立连接,网络视图会自动显示页面的缓存版本。
有什么方法可以查明显示的页面是否是从服务器或缓存中获取的?
甚至可能缓存页面有多旧。
这是为了能够通知用户如果他/她正在查看旧信息。
I'm making an Android application that, among other things, shows websites in a webview. As far as I understand, the webview automatically shows a cached version of the page if a connection can't be established.
Is there any way to find out if the page shown has been fetched from the server or cache?
Maybe even how old the cached page is.
This is to be able to notify the user if he/she is viewing old information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试破解 - 首先设置 WebView 的 缓存模式 到
WebSettings.NO_CACHE
并加载 URL。然后,创建一个自定义 WebChromeClient,如下所示:You could try a hack - at first set WebView's cache mode to
WebSettings.NO_CACHE
and load the URL. Then, create a custom WebChromeClient like this:由于 WebView 的工作方式与浏览器类似,因此答案是否定的。
有一些巧妙的方法可以检测这种情况。
或者替代解决方案是阻止页面被缓存(请参阅 WebView 文档)
Since the WebView work like the browser the answer is no.
There are some hacky way to detect that situation.
Or an alternative solution would be preventing the page from being cached (see WebView documentation)