I have a method which refreshes a list view by re-setting the adapter of the list view. The adapter downloads a thumbnail image for each list item when it is set.
I want to run this method called refreshListView() on a new thread so that the images get downloaded asynchronously but i'm aware that i can't update the UI on a separate thread.
What are the alternative ways to do this?
Thanks in advance.