9

我目前正在使用AsyncTask在我的应用程序的后台下载一个大文件,目前下载进度显示为ProgressDialog通过onProgressUpdate以下方式更新:

protected String doInBackground(String... sUrl) {
        try {
            String destName = sUrl[1];
            file_Delete(destName); // Just to make sure!

            URL url = new URL(sUrl[0]);
            URLConnection connection = url.openConnection();
            connection.connect();
            int fileLength = connection.getContentLength();

            InputStream input = new BufferedInputStream(url.openStream());
            OutputStream output = new FileOutputStream(destName);

            byte data[] = new byte[1024];
            long total = 0;
            int count;
            while ((count = input.read(data)) != -1) {
                total += count;
                publishProgress((int) (total * 100 / fileLength));
                output.write(data, 0, count);
            }

            output.flush();
            output.close();
            input.close();

        } catch (Exception e) {
            Log.e(TAG, NAME + ": Error downloading file! " + e.getMessage());
            return e.getMessage();
        }

        return null;
    }

@Override protected void onProgressUpdate(Integer... progress) {
        super.onProgressUpdate(progress);
        DownloadImage.mProgressDialog.setProgress(progress[0]);


    }

这很好用,但是我现在想在通知栏中使用通知,以便跟踪下载(因为文件可能相当大,用户希望从应用程序外部跟踪)。

我已经尝试了下面的代码,但是 UI 开始严重滞后,我可以看到它是由于publishProgress被调用了很多,所以我怎么能改变后台代码以publishProgress每秒 调用一次

@Override protected void onProgressUpdate(Integer... progress) {
        super.onProgressUpdate(progress);
        DownloadImage.mProgressDialog.setProgress(progress[0]);

        DownloadImage.myNotification = new NotificationCompat.Builder(c)
        .setContentTitle("Downloading SlapOS")
        .setContentText("Download is " + progress[0] + "% done")
        .setTicker("Downloading...")
        .setOngoing(true)
        .setWhen(System.currentTimeMillis())
        .setProgress(100, progress[0], false)
        .setSmallIcon(R.drawable.icon)
        .build();

        DownloadImage.notificationManager.notify(1, DownloadImage.myNotification);

    }
4

2 回答 2

18

那么我怎么能改变后台代码以每秒调用一次publishProgress

我之前已经为一个在 a 中显示 % 的上传函数做过这个Notification,但同样的想法。让您AsyncTask跟踪percentDone下载的内容,并且publishProgresspercentDone更改时调用。这样,您只会publishProgress在下载的百分比更改时调用,Notification因此需要更新。这应该可以解决 UI 滞后问题。

我正在写这个作为我建议的实现,听起来 OP 已经让它工作了。但也许这会在未来对其他人有所帮助:

    byte data[] = new byte[1024];
    long total = 0;
    int count, latestPercentDone;
    int percentDone = -1;
    while ((count = input.read(data)) != -1) {
        total += count;
        latestPercentDone = (int) Math.round(total / fileLength * 100.0);
        if (percentDone != latestPercentDone) {
            percentDone = latestPercentDone;
            publishProgress(percentDone);
        }
        output.write(data, 0, count);
    }
于 2013-06-27T14:32:41.740 回答
1

我真的很喜欢你的方法!我发现将代码更改为以下代码使我的进度条正确更新。我在使用 math.round() 时遇到了一些问题。

latestPercentDone = (int) ((dataBytesWritten / (float) totalSize) * 100);
    if (percentDone != latestPercentDone) {
    percentDone = latestPercentDone;
    publishProgress(percentDone);
    }
于 2014-04-16T10:49:33.730 回答