发送请求oncreate vs onresume

时间:2014-02-17 08:02:28

标签: android oncreate onresume networkonmainthread

当我使用onCreate()方法发送请求时,我收到了networkonmainthreadexception个异常,但是当我以onResume()方式发送请求时,它运行良好。有什么区别?是否有onResume方法的独立主题或什么?

1 个答案:

答案 0 :(得分:-1)

查看this链接,其中包含OnCreate()方法&的详细信息。 OnResume()方法。并且不要尝试从主线程或ui线程调用或发送请求以保存在主线程异常上获取网络总是我建议to_Send请求或调用任何web service_ in background 使用异步任务检查this链接。同时检查this link for reference of OnResume() method希望这会有所帮助。