Is it possible to prevent a WebView from caching data in /data/data/???/cache/webViewCache? I\'ve set the following on the WebSettings but the cache folder is still used:
In my application (on Android 4.2.2) I load on a webview a web page with images that I can change at runtime (I replace the images while keeping the path). The Matt's solution (1)
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
view.clearCache(true);
}
works for me, the solution (2) no! Cheers