如何使用线程更新进度条
如何在android中使用后台线程更新进度条?它还会改变进度条中的进度。请帮忙。
Android时尚
How to update progress bar using Background thread in android? It would also change the progress in progress bar. Please help.
AndroidVogue
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我已经使用
AsyncTask
完成了类似的任务。AsyncTask
具有方法onProgressUpdate(Integer)
,例如,您可以调用该方法,或者在doInBackground()
期间每次完成进度时调用 <代码>publishProgress()。有关更多详细信息,请参阅文档。
I have done similar task using
AsyncTask
.AsyncTask
has methodonProgressUpdate(Integer)
that you can call each iteration for example or each time a progress is done duringdoInBackground()
by callingpublishProgress()
.Refer to the docs for more details.
使用handler,该handler会更新进度条
你要做的是:
1)从您的线程向处理程序发送消息
2)更新处理程序中的进度条
Use handler, this handler will update the progress bar
you have to do is:
1)send message to handler from you thread
2)update progress bar in handler
使用 Thread 你可以像这样调用 oncreate 方法中的函数
Using Thread you can do it like this just call the function in oncreate method