gpt4 book ai didi

java - 下载文件时更新通知时如何防止 UI 滞后?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:55:29 24 4
gpt4 key购买 nike

我目前正在使用 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);

}

最佳答案

so how could I go about changing the background code to call publishProgress only every second

我之前已经为在 Notification 中显示 % 的上传功能完成了此操作,但完全相同的想法。让您的 AsyncTask 跟踪下载的 percentDoneONLYpercentDone< 时调用 publishProgress/ 更改。这样,您只会在下载百分比发生变化时调用 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);
}

关于java - 下载文件时更新通知时如何防止 UI 滞后?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17345623/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com