I am using Android staggered grid to present lines of images (almost all of them have the same size). It show near 15 images per screen height. Without images (just placeholders) the scrolling works well, but with them it becomes luggy. I use pause\resume technique, but it doesn;t help much. Also I nailed it down till backbone to avoid some extra data that can leaked.
The only issue which happens quite frequently is GC call. Seems this is the root of my issue. I assume it gathered not used bitmap as viewholder is reusable here.
Do you have ideas how to decrease the frequency of GC calls for such case?