【问题标题】:What is difference between IntentService and HandlerThread?IntentService 和 HandlerThread 有什么区别? 【发布时间】:2015-07-10 02:21:36 【问题描述】: 他们都循环通过一些东西(消息/意图)的队列并执行它们? 【问题讨论】: 标签: android android-intent 【解决方案1】: IntentService 并没有真正循环通过 Intent 队列,它使用Service 接收 Intent 并在工作线程中处理它,实际上,IntentService 中有一个 HandlerThread 运行在循环的东西。 【讨论】: