I would like to cache images from the internet. If I load the image from my raspberry (http://192.168.192.200/QuoteU/images/testcache.jpg) and I have no internet, the app doesn't appear the image. (I loaded it before from the internet). If I load the image from the source (https://fs01.androidpit.info/a/63/0e/android-l-wallpapers-630ea6-h900.jpg), the app appears the image even if the smartphone has no internet. I am using the ImageLoader-Class from volley and apache as my webservice. It must be a server-problem, am I right?
Volley:
if(ImageLoader imageLoader == null){
imageLoader = AppController.getInstance().getImageLoader();
}
FeedImageView imageViewQuote = (FeedImageView) itemView.findViewById(R.id.feedImage1);
imageViewQuote.setImageUrl("https://fs01.androidpit.info/a/63/0e/android-l-wallpapers-630ea6-h900.jpg", imageLoader);