How to prevent reloading of images in listview with custom adapter when refresh listview
问题 I am using displayImage() method of UniversalImageLoader library in the adapter class, which sets images(from url) in the list items. i want if i reset adapter in my listview, images should not reload if the urls are same as previous urls. 回答1: There is two solution already posted in the issue section of Universal Image Loader . Solution #1: You can use custom displayer: new FadeInBitmapDisplayer(300) { @Override public Bitmap display(Bitmap bitmap, ImageView imageView, LoadedFrom loadedFrom)