Execute long running operations on the service

前端 未结 2 1896
失恋的感觉
失恋的感觉 2020-12-21 12:54

I\'m building an application which have a Service. I know that all application components run in the same UI process, at least you specify it in the manifest. So to avoid AN

2条回答
  •  梦毁少年i
    2020-12-21 13:26

    Android Service executing in UI thread. So you should use AsyncTask or another way to work with threads for network requests.

提交回复
热议问题