Is there any option to cache only images in WebView ? My current settings:
wv.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
wv.getSettings().setAppCachePath(getApplicationContext().getCacheDir().getAbsolutePath());
wv.getSettings().setAllowFileAccess(true);
wv.getSettings().setAppCacheEnabled(true);
But this is caching all requests I need to cache only images.