Hello everyone, I have implemented a view where the user can scroll through several hundred CD covers, which are in a GridView of three columns at 100x100 each. There is nothing else displayed, just the images one next to each other. The bitmaps are cached using a HashMap<Long, SoftReference<Bitmap>>. Cached images are already resized. The holder pattern for fast View access is used as well, yet I am not able to accomplish satisfactory results: Scrolling is choppy, only super slow scrolling makes the images move fluently across the screen.
Does anyone have already accomplished something similar with better speed? Is such a thing even possible with today's Android hardware? Note that I want the real covers to scroll and not placeholders which are loaded on scroll idle. Any ideas, hints or suggestion appreciated! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

