Asynctask vs Thread vs Services vs Loader

前端 未结 6 1762
你的背包
你的背包 2020-12-04 14:55

I got slightly confused about the differences between Asynctask, Thread, Service, Loader in Android.

I know how

6条回答
  •  既然无缘
    2020-12-04 15:11

    I think AsyncTask is better than Thread since it provides callback on main thread. Loader is better than AsyncTask since it also handles configuration changes for you.

提交回复
热议问题