Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
据我了解,一次IntentService只能处理一个 Intent,因为它共享一个工作线程来完成所有工作。但是如果我IntentService的应用程序中有多个 s,它们可以并行运行,还是它们都共享单个工作线程?
IntentService
但是如果我的应用程序中有多个 IntentServices,它们可以并行运行吗
如果你的意思是你有多个子类IntentService,它们应该能够并行运行。