学习android开发已经四五个月,由于项目中职责的原因一直没有接触过Service的实际项目,今天重新学一遍Service用法. 问题: 作为四大组件,为什么需要Service? 它与Thread又有何区别? 具体怎么用? 如何实现与Activity之间的通信? 一.Service 介绍 从官网中,我们可以看到这么一句: Most confusion about the Service class actually revolves around what it is not: A Servi…
什么是IntentService? (本文转自http://blog.csdn.net/gaojie314/archive/2010/11/28/6040701.aspx) 官方的解释是: IntentService is a base class for Services that handle asynchronous requests (expressed as Intents) on demand. Clients send requests through android.…