smanikandan14 / ThinDownloadManager

To download files and to avoid using DOWNLOAD_WITHOUT_NOTIFICATION permission if you are using Android's DownloadManager in your apps.
Apache License 2.0
783 stars 185 forks source link

Progress status not updating #131

Open anandinmaddy opened 5 years ago

anandinmaddy commented 5 years ago

Download progress is updating initially, but after UI re-called. OnProgressUpdate() is called, but progress bar not updating.

anandinmaddy commented 5 years ago
                                    @Override
                                    public void onProgress(int id, long totalBytes, long downloadedBytes, int progress) {
                                        viewHolder.circularProgressbar.setProgress(progress);
                                        Log.d("MobileDownload",String.valueOf(progress));

                                    }
                                });