标签: android android-intent
它们都循环通过某个队列(消息/意图)并执行它们?
答案 0 :(得分:1)
IntentService并没有真正循环通过Intents队列,它使用Service接收Intents并在工作线程中处理它。实际上,HandlerThread中运行了IntentService做循环的东西。
Service
HandlerThread
IntentService