【发布时间】:2014-10-27 18:55:44
【问题描述】:
关注this question,我有疑问。
假设在我的应用程序中,我定义了 2 个在启动后自动启动的意图服务,即
<application>
<receiver android:name=".InterntService1" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
<receiver android:name=".InterntService2" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
</application>
现在,这是否意味着只有在 IntentSerivce1 完成后才会执行 IntentServe2?
或者service1和2都可以并行执行?
【问题讨论】:
标签: android android-intentservice