Currently, I\'m using AsyncTask to handle Http connection and retrieve data as JSON format.
Loading all data is trivial but it consumes too much time, so I decided to swi
If you are using a ListView
, I believe I can safely assume that you must be using some sort of ListAdapter
. Instead of starting a new AsyncTask
in the onScroll
event, you should maintain just one single AsyncTask
to retrieve data from the server, add that data to the ListAdapter
dataset and then call notifyDatasetChanged
on the ListAdapter
.
The ListAdapter
and ListView
will take care of the rest.