I would like to clear the cache, but I'm not sure how to clear the bitmap. I use the Koush Ion library to upload an image
try {
bitmap = Ion.with(context).load(URLimage).withBitmap().asBitmap().get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
I need to clear the bitmap cache every time I press a button. thanks in advance
source
share