In my android app I set
webView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
to enable cache for webview. The question is,when the web content changed(that I don't know),it still use the old cached content. How can I make it automatically recache the content when the online web content has been changed without not using the cache?
Any suggestion would be appreciated.