android Service和IntentService

关于Service和IntentService的不同就不多说了,主要参考http://blog.csdn.net/zhf198909/article/details/6906786这篇文章。

主要是IntentService比Serivce多了一个onHandleIntent 方法用于进行耗时操作,两个service执行流程(startService(new Intent(this. Service.class)))都是oncreate--->onStartCommand---->onStart---->

其中IntentService多了一个方法oncreate--->onStartCommand---->onStart---->onHandleIntent   (其中onHandleIntent进行耗时操作)。

还有一点不同就是IntentService执行完onHandleIntent 方法后会自动调用onDestroy方法,而Service却不会!这里要注意哦!


你可能感兴趣的:(android Service和IntentService)