我正在尝试重现DownloadManager在我的应用程序内的通知栏中显示的相同进度,但我的进度永远不会发布。我正在尝试使用runOnUiThread()更新它,但由于某种原因它还没有更新。
我的下载:
String urlDownload = "https://dl.dropbox.com/s/ex4clsfmiu142dy/test.zip?token_hash=AAGD-XcBL8C3flflkmxjbzdr7_2W_i6CZ_3rM5zQpUCYaw&dl=1";
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(urlDownload));
request.setDescription("Testando");
request.setTitle("Download");
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "teste.zip");
final DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
final long downloadId = manager.enqueue(request);
final ProgressBar mProgressBar = (ProgressBar) findViewById(R.id.progressBar1);
new Thread(new Runnable() {
@Override
public void run() {
boolean downloading = true;
while (downloading) {
DownloadManager.Query q = new DownloadManager.Query();
q.setFilterById(downloadId);
Cursor cursor = manager.query(q);
cursor.moveToFirst();
int bytes_downloaded = cursor.getInt(cursor
.getColumnIndex(DownloadManager.COLUMN_BYTES_DOWNLOADED_SO_FAR));
int bytes_total = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_TOTAL_SIZE_BYTES));
if (cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_STATUS)) == DownloadManager.STATUS_SUCCESSFUL) {
downloading = false;
}
final double dl_progress = (bytes_downloaded / bytes_total) * 100;
runOnUiThread(new Runnable() {
@Override
public void run() {
mProgressBar.setProgress((int) dl_progress);
}
});
Log.d(Constants.MAIN_VIEW_ACTIVITY, statusMessage(cursor));
cursor.close();
}
}
}).start();
我的statusMessage方法:
private String statusMessage(Cursor c) {
String msg = "???";
switch (c.getInt(c.getColumnIndex(DownloadManager.COLUMN_STATUS))) {
case DownloadManager.STATUS_FAILED:
msg = "Download failed!";
break;
case DownloadManager.STATUS_PAUSED:
msg = "Download paused!";
break;
case DownloadManager.STATUS_PENDING:
msg = "Download pending!";
break;
case DownloadManager.STATUS_RUNNING:
msg = "Download in progress!";
break;
case DownloadManager.STATUS_SUCCESSFUL:
msg = "Download complete!";
break;
default:
msg = "Download is nowhere in sight";
break;
}
return (msg);
}
我的日志工作正常,而我的下载正在运行中说“正在下载!”当它完成“下载完成!”,但我的进度不会发生同样的情况,为什么?我真的需要一些帮助,其他逻辑做得非常感谢
答案 0 :(得分:56)
你要划分两个整数:
final double dl_progress = (bytes_downloaded / bytes_total) * 100;
由于bytes_downloaded
小于bytes_total
,(bytes_downloaded / bytes_total)
将为0,因此您的进度将始终为0.
将您的计算更改为
final int dl_progress = (int) ((bytes_downloaded * 100l) / bytes_total);
获得整体(尽管已下降)百分位数的进展。
答案 1 :(得分:17)
保罗的答案是正确的,但是如果下载量越来越大,你会很快达到max int并开始获得负面进展。我用它来解决这个问题:
final int dl_progress = (int) ((bytes_downloaded * 100l) / bytes_total);
答案 2 :(得分:5)
正如保罗所说,你要划分两个整数,结果总是<1。
始终在除以前输出您的数字,以浮点数计算并返回。
不要忘记处理DivByZero。
final int dl_progress = (int) ((double)bytes_downloaded / (double)bytes_total * 100f);
答案 3 :(得分:3)
如果有人需要使用RxJava在@kotlin中使用@Victor Laerte的问题来实现下载进度检索器,请执行以下操作:
DownloadStateRetriever.kt
class DownloadStateRetriever(private val downloadManager: DownloadManager) {
fun retrieve(id: Long) {
var downloading = AtomicBoolean(true)
val disposable = Observable.fromCallable {
val query = DownloadManager.Query().setFilterById(id)
val cursor = downloadManager.query(query)
cursor.moveToFirst()
val bytesDownloaded = cursor.intValue(DownloadManager.COLUMN_BYTES_DOWNLOADED_SO_FAR)
val bytesTotal = cursor.intValue(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)
if (isSuccessful(cursor)) downloading.set(false)
cursor.close()
if (bytesTotal == 0) 0.toInt() else ((bytesDownloaded * 100F) / bytesTotal).toInt()
}
.subscribeOn(Schedulers.newThread())
.delay(1, TimeUnit.SECONDS)
.repeatUntil { !downloading.get() }
.subscribe {
Timber.i("Subscribed to $id. progress: $it")
}
}
private fun isSuccessful(cursor: Cursor) = status(cursor) == DownloadManager.STATUS_SUCCESSFUL
private fun status(cursor: Cursor) = cursor.intValue(DownloadManager.COLUMN_STATUS)
}
我为光标添加了扩展名,以使代码更清晰:
CursorExtensions.kt
import android.database.Cursor
fun Cursor.column(which: String) = this.getColumnIndex(which)
fun Cursor.intValue(which: String): Int = this.getInt(column(which))
fun Cursor.floatValue(which: String): Float = this.getFloat(column(which))
fun Cursor.stringValue(which: String): String = this.getString(column(which))
fun Cursor.doubleValue(which: String): Double = this.getDouble(column(which))