My thought process would be something like this:
- Create a list of all the feeds.
- From 1 to max number of threads, spawn a new thread to retrieve the data from the feed
- As a thread completes, checks list for remaining feeds to check; if more remain, remove feed from list and retrieve the data from the feed
- Each thread, once completed, adds the data for its retrieved feed to whatever data source you're using for the list adapter, sorts the data source, and notifies the list that the data set has changed.