Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用其收藏夹、数据等开发用户配置文件。将设备的配置文件和用户的远程配置文件与服务同步是否很好?或者通常在单独的线程中提出请求就足够了?
如果您想使用服务,请确保使用IntentService
如果您使用普通服务,它将在主线程上运行,这在异步操作的情况下不是一个好方法。
你基本上需要 IntentService 和 ResultReceiver。
您可以查看以下内容以了解如何实施它们
如何在 android 2.2 中创建自己的下载管理器
希望这有帮助。