So I have a ListAdapter that binds to an Array onCreate. The array is read from the web.
My question is how do I do paging on this data? I don't want to load ALL the data from the web on first load. Ideally, I want to load 50 at a time, and when the user scrolls pass a certain point, I spin a thread to load some more etc.
How do I do that with a ListView?
Thanks!

