我有这样的代码:
public Dictionary<Object, Object> call(String method, Iterable args)
{
AsyncHttpClient client = new AsyncHttpClient();
client.get(getUrl(method, args), new AsyncHttpResponseHandler() {
@Override
public void onSuccess(String response)
{
Gson gson = new GsonBuilder().create();
}
});
}
我希望能够返回(Dictionary<Object, Object>) gson.fromJson(response, Dictionary.class)
到我的call
方法,但是如何做?我使用http://loopj.com/android-async-http/来拥有一个易于使用的异步 HTTP 请求系统。
谢谢 !