我正在尝试解决启动相关问题的开始,我注意到AndroidManifest.xml的许多示例,其中包含android.intent.action.BOOT_COMPLETED,其中一些也有android.intent.category.HOME的类别。 。有谁知道两者之间的区别(如果有的话)是什么?
即
<receiver android:name=".MartiniBootBroadCastReciever"
android:enabled="true" android:exported="false"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
与
<receiver android:name=".MartiniBootBroadCastReciever"
android:enabled="true" android:exported="false"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
答案 0 :(得分:1)
AFAIK,你的第一个错了。 BOOT_COMPLETED
广播不应该包含该类别,AFAIK。