I have an Android app that simply houses a website. I would like the app to cache the pages of the website for offline use.
I\'m doing a simple test to see if the cache
There are occasions that a WebView cannot be cached natively. If the page header contains the following fields, the WebView will not be able to cache the contents from that page.
Cache-Control: no-store, no-cache
Pragma: no-cache
In this case, youwill have to modify the page property on the server to solve the caching problem.