public Bitmap getBitmap(String url) { try { return mImageCache.getBitmap(createKey(url)); } catch (NullPointerException e) { throw new IllegalStateException("Disk Cache Not initialized"); } }
public Bitmap getBitmap(String url) {
try {
return mImageCache.getBitmap(createKey(url));
} catch (NullPointerException e) {
throw new IllegalStateException("Disk Cache Not initialized");
}
}