首先,IntentService是继承的Service
IntentService 中的 onCreate方法中开启了一个线程处理耗时的操作,所以Service需要有耗时操作的可以用IntentService。另外IntentService中在onHandleIntent方法中处理耗时操作,处理完成之后会自动的结束自己。
Android中IntentService与Service的区别
最新推荐文章于 2024-08-26 10:00:00 发布
首先,IntentService是继承的Service
IntentService 中的 onCreate方法中开启了一个线程处理耗时的操作,所以Service需要有耗时操作的可以用IntentService。另外IntentService中在onHandleIntent方法中处理耗时操作,处理完成之后会自动的结束自己。