i would like to clear bitmap cache but i am not sure how to clear the bit map . I am using Koush Ion library to load the picture
try {
bitmap = Ion.with(context).load(URLimage).withBitmap().asBitmap().get();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ExecutionException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
i need to clear the bitmap cache everytime i click on a button. Thanks in advance