What I want to do: run a background thread which calculates ListView contents and update ListView partially, while results are calculated.
W
i haved same problem when add new data in lazy image loader i just put
adapter.notifyDataSetChanged();
in
protected void onPostExecute(Void args) { adapter.notifyDataSetChanged(); // Close the progressdialog mProgressDialog.dismiss(); }
hope it helps you