在我的XML中,我有这个进度条但是在下载完成后它正在旋转。如何使用我的下载代码附加此进度条。
<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@android:style/Widget.ProgressBar.Large"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@+id/button"
android:layout_toStartOf="@+id/button"
android:layout_marginTop="153dp" />
这就是我下载文件的方式:
downloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
Uri uri = Uri.parse(downloadFileUrl);
DownloadManager.Request request = new DownloadManager.Request(uri);
nameOfFile = URLUtil.guessFileName(urlChar, null,
MimeTypeMap.getFileExtensionFromUrl(urlChar));
Log.e("url char", urlChar);
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, nameOfFile);
request.setVisibleInDownloadsUi(true);
myDownloadReference = downloadManager.enqueue(request);
getProgressPercentaged();
}