Hey,
I'm using the SpiceArrayAdapter in a GridView to load some tiles in two columns. Each tile is a CardView with an ImageView and TextView made to look like the tiles in Google Maps when you click "Explore Around Me".
What I've found is that while the images load asynchronously and everything functionally is fine, when scrolling at any kind of speed above really slow, the scrolling looks a bit janky, flashy or jittery however you want to describe it, in other words not smooth. I think it may be caused by the fact that the image disappears for a bit just before being swapped over
So the question is: is SpiceArrayAdapter ok to use with GridView? Or should I use the old fashioned method of a View Holder and just using the RoboSpice bitmap request to get the image instead of an AsyncTask.
Cheers