Да, вы можете, по крайней мере, для Android 2.3 и ниже.
Если вы хотите увидеть всю папку кэша, она находится здесь:
<android cache dir>/<your app package>/cache/webviewCache/
Если вы уже знаете URL кэшированного изображения, вы можете получить фактический файл так:
String uri = "http://the url of the image that you need";
String hashCode = String.format("%08x", uri.hashCode());
File file = new File(new File(getCacheDir(), "webviewCache"), hashCode);
// if the call file.exist() returns true, then the file presents in the cache