4
關注this question,我有疑問。IntentService平行執行
讓我們在我的應用程序了說我定義開機後自動啓動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已經完成後IntentSerive2纔會執行?
or both service1 & 2可以並行執行嗎?