I've got one issue with otherwise nice working ListView.
I want to load new items into the existing listView, just like in Gmail or Google Play app - I show like 15 items and when the user clicks Load next, the other 15 will be loaded, so we will display like 30 items.
Everything works fine like this, except the ImageView, which is part of the every item in the ListView and is loaded asynchronously. Every time I click load next, all the images in the existing items are reloaded.
How can I avoid this behavior? Any suggestions?
It doesn't really look well, images are loaded from the cache really fast, so it is like a short blicking of all the images.
I was thinking about overriding the notifydatasetchanged() somehow - but I would expect a method in the ListView, in which I could set whether the whole ListView should be reloaded, or just the new items. All the items will fill_parent, so the width is not an issue.