I'll receive my data from a webpage and i'll use Gson library and AsyncTask.
What is the best way to push the new elements to the list? I thought to save a list containing the data as field of the activity, and when an update is received call notifyDataSetChanged().
But in this way, the whole list will be refreshed, will it?