I'm using this coverflow widget: http://code.google.com/p/android-coverflow/
with images downloaded from the internet. Works almost fine.
The problem is that the coverflow jumps/stumbles a bit when the images are downloaded from the web or fetched from disk. I'm doing this in a separate thread, and set in imageView with handler, etc. this system works perfectly, fluently, everywhere else, listview, gridview, etc.
I even switched to this library for the image handling: https://github.com/nostra13/Android-Universal-Image-Loader, which seems to handle all the threading and caching very well.
But still the same.
One solution, is to prefetch all the images and put them in memory. As long as the coverflow gets the images from the memory cache, it's fluent. But the number of images is obviously limited, because of memory limits. I tried with LruCache. But well, as expected, as soon as the memory images have to be cleared from memory and fetched from disk/web again, the jumping appears.
Anyone else had this? Is there a solution?