在哪里扩展 AsyncTask?
我有一个由以下元素组成的登录系统:
LoginActivity 使用 LoginController 使用 RestClient 通过 Execute() 调用 Web 服务。我希望异步执行对 Web 服务的调用,但我还需要一个对话框来在调用时通知用户相关信息。执行不会返回任何内容。
我将如何去做这件事?我在哪里使用 AsyncTask ?
I have a login system consisting of the following elements:
LoginActivity uses LoginController uses RestClient to call a web service with Execute(). I want the call to the web service to be performed asynchronously but I also need a dialog box to notify the user of relevant information while the call is being made. Execute does not return anything.
How will I go about doing this ? Where do I use AsyncTask ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AsyncTask 有一些方法可以帮助您完成此任务。
扩展 AsyncTask:
要使用参数执行此任务,请尝试以下操作:
其中 request 是 HttpUriRequest 类型的对象。请记住参数的顺序很重要。
如果您想在服务连接时更新状态,可以使用 Rasel 所说的方法:
AsyncTask has a few methods that will help you with this.
Extend the AsyncTask:
To execute this with parameters, try this:
Where request is an object of type HttpUriRequest. Remember the order of the parameters matter.
If you want to update the status while the service is connecting you can use this method as Rasel said: