与服务器同步时的进度条
我的应用程序需要不断连接远程服务器来下载数据。我想在下载数据时实现一个进度条,并显示下载进度和预计剩余时间。
谁能建议最好的方法来做到这一点?
My application needs to constantly connect with remote server to download data. I want to implement a progress bar while the data is downloaded and also show the progress and estimated time left in download.
Can anyone please suggest the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 AsyncTask 进行连接。
在 preExecute 中获取要下载的对象的大小,使用对象的上限大小创建进度条等。
在 onProgressUpdate 中计算自上次进度更新以来已完成的工作量,以便您可以估计时间并更新进度条到目前为止完成的总进度。
Use an AsyncTask to connect .
In preExecute get the size of the object to download, create progress bar etc. with upperbound size of the object.
in onProgressUpdate calculate how much has been done since last progress update so you can estimate time and update your progress bar with total done so far.
这取决于同步类型...例如:
理想情况下,您必须考虑您收到的文件的大小以及您使用它们所花费的时间。
It depends on type of synchronization... for instance:
Ideally you must take into account the size of the files you are receiving + the amount of time you spend using them.