DownloadManagerを使用してアクティビティ内のダウンロードの進行状況を表示する


89

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);
}

ログが完全に機能しているのに、ダウンロードの実行中に「ダウンロードが進行中です」と表示されます。そして、それが完了すると「ダウンロード完了!」ですが、私の進行状況では同じことが起こりません。なぜですか?私は本当にいくつかの助けが必要です、それを行うための他のロジックは本当に感謝しています


それはあなたのファイルが単に小さすぎること、そして進行状況が公開される前にダウンロードが完了することでしょうか?タスクでダウンロードクエリは何を返しますか?タスクが一定期間後にのみ実行される場合、メインスレッドで他の長時間実行オペレーションが発生する可能性があります。
ポールランメルツマ2013

コードを更新しました。今すぐ確認できますか?そして、ファイルの長さが小さすぎない場合、通知バーでダウンロードの進行状況を確認できます
Victor Laerte

回答:


62

2つの整数を除算しています:

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);

全体の(床になりましたが)パーセンタイルの進捗状況を取得します。


@AZ_ご協力いただきありがとうございます。より複雑なソリューションを使用して、独自の回答を追加することをお勧めします。
ポールランメルツマ2014年

ユーザーにとって難しいので、すでに受け入れられている答えの別の答えを入れたくないのは大丈夫です。私の編集を受け入れないことを選択できます:)
AZ_

1
アクティビティが終了し、ダウンロードをキャンセルしたい場合は、division by zero致命的なエラーが発生します。そういうわけで私はそうしました final int dl_progress = ( bytes_total > 0 ? (int) ((bytes_downloaded * 100L) / bytes_total) : 0 );
KaHa6uc

17

Paulの答えは正しいですが、ダウンロード数が多いと、max intにかなり早く到達し、マイナスの進展が見られます。私はこれを使って問題を解決しました:

final int dl_progress = (int) ((bytes_downloaded * 100l) / bytes_total);

あなたが正しいです; 他の人が同じ間違いをしないように、私の回答を変更しました。
Paul Lammertsma、2014

4

ポールが言ったように、2つの整数を除算しているため、結果は常に1未満です。

常に浮動小数点で計算して返す除算の前に必ず数値をキャストします。

DivByZeroを処理することを忘れないでください。

final int dl_progress = (int) ((double)bytes_downloaded / (double)bytes_total * 100f);

4

誰かがKotlinでの@Victor LaerteのRxJavaの質問からダウンロードプログレスレトリーバーを実装する必要がある場合は、次のようにします。

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))
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.