android ProgressBar updateing during download
问题 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 bar not update @Override protected void onProgressUpdate(Long... values) { ProgressBar bar1; TextView status1; DownloadStructure.setProgress(values[0].intValue()); bar1 = DownloadStructure.getProgressBarRefrence(); if (bar1 != null) { bar1.setVisibility(View.VISIBLE); bar1.setMax(values[2].intValue()); bar1