1

我在我的 Android 应用程序中使用 Robospice 从服务器获取 JSON 格式的数据。当用户第一次登录时,我想执行一些请求来获取第一次运行所需的数据,然后才将用户重定向到某个活动。

如何“等待” Robospice 请求完成?

4

2 回答 2

0

You can control the result of your Robospice request on your requestListener, so you should start performing your requests at your onRequestSuccess method of your customRequestListener

于 2013-12-11T16:56:02.707 回答
0

使用类似CountDownLatch. 当它达到 0 时,开始你的活动。

于 2014-01-03T15:02:02.813 回答