How save image in Android Universal Image Loader?
- by Saeed
In Lazy List i use this code and my image store in a folder named LazyList
ImageLoader imageLoader=new ImageLoader(context);
imageLoader.DisplayImage(url, imageView);
But in Universal Image Loader i use this
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext())
.build();
…