我在我的 Android 应用程序中使用 Robospice 从服务器获取 JSON 格式的数据。当用户第一次登录时,我想执行一些请求来获取第一次运行所需的数据,然后才将用户重定向到某个活动。
如何“等待” Robospice 请求完成?
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
使用类似CountDownLatch
. 当它达到 0 时,开始你的活动。