I am using Picasso to display image in my android app:
/**
* load image.This is within a activity so this context is activity
*/
public void loadImage (){
Picasso picasso = Picasso.with(this);
picasso.setDebugging(true);
picasso.load(quiz.getImageUrl()).into(quizImage);
}
I have enable debugging and it always shows either red and green .But never shows yellow
Now if i load same image next time and internet is not available the image is not loaded.
Questions: