My question goes thus:
Does Glide create different caches for each object i.e Context, Fragment cause when i used
glide
to load images into my adapter, on another activity the image is then redownloaded again. And i don't wan't that.
I load the images in the fragment with:
Glide.with(getActivity()).load("<url>").thumbnail(0.1f).crossfade().into(imageView);
And in the opened activity :
Glide.with(this).load("<url>").thumbnail(0.1f).crossfade().into(imageView);
then the image is re-downloaded which consumes more data.
and when i use application context --> the app crashes.
What can i do to fix this behavior?.