I've a ListView
in which each row item contains many ImageViews
apart from some content.
That is, there will be many list items, each containing many images.
In order to not to hold user unnecessarily, I'm showing the content first & then downloading the images asynchronously.
Currently, for each image I'm starting a new AsycTask
.
Although, it working alright, but this not a good approach.
In place of this, what should I use?