基本 ASyncTask 帮助
好吧,我已经阅读了 Android 文档,并仔细阅读了一篇又一篇关于 ASyncTask 的文章,只是不明白如何从外部 ASyncTask 类获取信息。运行良好:
myASyncTask = new MyASyncTask();
myASyncTask.execute(myParam);
...我完全期望任务能够完成,但我如何从中得到任何回报?文档说 onPostExecute 在 UI 线程上调用,但它也说不要手动调用 onPostExecute?!?如何从 ASyncTask 对象取回数据???
当我将 ASyncTask 创建为内部类时,它可以正常工作,但我希望这个任务是外部的,这样我就可以从不同的活动中调用它。
Okay, I've read the Android documentation and been perusing article after article on ASyncTask and just don't understand how to get information back from my external ASyncTask class. This runs fine:
myASyncTask = new MyASyncTask();
myASyncTask.execute(myParam);
...and I fully expect the task to complete but how do I get anything back from it? The documentation says that onPostExecute is invoked on the UI thread but it also says to not call onPostExecute manually?!? How do I get data back from my ASyncTask object???
I've got it to work fine when I create my ASyncTask as an inner class but I'd rather this task be external so I can call it from different Activitys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您阅读文档,您可以使用< code>get 方法获取结果,并等待任务完成。
您还可以使用
getStatus
< /a> 获取任务的当前状态(假设它已发布)。If you read the documentation you can use
get
method to get the result , and it waits till the task is done .You can also use
getStatus
to get the current status of the task , assuming it publishes it .