in my file download app there is ListView that each row contain properties file and one ProgressBar for downloading status of it and i work with View Holder pattern but progress
Try to call notifyDataSetChanged :
notifyDataSetChanged
protected void onPostExecute(Boolean result) { ... myListView.notifyDataSetChanged(); //or simply notifyDataSetChanged if your Async inside adapter }