We have ListView with Images. Images downloads from our server. Then saves to Storage and puts to cache like this:
private static final Hashtable<String, Bitmap> cachePhoto = new Hashtable<String, Bitmap>();
So in getView after 1st added we gets Images from cache and sets it to ImageView:
i.setImageBitmap(photo);
And now we have some lags while scrolling on many devices. But wanted to smooth scrolling. How can i avoid lags?