0

在 DataDroid 库中,为了执行我们使用的请求 execute(request, listner)

有什么方法可以在不使用listner的情况下执行请求?

I need to send Information to server and for which the response is not related to    user.So, I will handle error and success case in Operation.
I dont want to override methods : 
onRequestFinished(),
onRequestConnectionError(),
onRequestDataError()
as there is no UI updation.
4

2 回答 2

0

我得到了解决方案:执行(请求,空)。

于 2014-01-29T08:09:10.580 回答
0

AsyncTask应该为你工作。您可以在 doInBackground 中做任何您想做的事情,并在 onPostExecute 中返回结果,如果需要,您可以从那里操作 UI。否则它只是一个与您的服务器通信的后台线程。

于 2014-01-29T07:38:39.637 回答