etsy / AndroidStaggeredGrid

An Android staggered grid view which supports multiple columns with rows of varying sizes.
https://github.com/etsy/AndroidStaggeredGrid
4.76k stars 1.13k forks source link

Reload on scroll #199

Open norm2016 opened 8 years ago

norm2016 commented 8 years ago

All the images and text are reloaded when I scroll. Sense I have to download all the data I wanted to avoid this "issue". If I use if (convertView == null) { ... } else { vh = (ViewHolder) convertView.getTag(); } all the data is messed up , so I removed this part ( and works just fine ) but every time I scroll all the data is reloaded. And while the data is downloading all the fields, images etc. are blank.