Android BOOT_COMPLETED 和 Android BOOT_COMPLETED 之间的区别类别 首页

发布于 2024-10-16 06:40:36 字数 1057 浏览 3 评论 0原文

我正在尝试解决与启动相关的问题,我注意到 AndroidManifest.xml 的许多示例都有 android.intent.action.BOOT_COMPLETED ,其中一些示例也有 android.intent.category.HOME 类别。有谁知道两者之间有什么区别(如果有)?

IE。

       <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>

I am trying to solve a start on boot related problem and I noticed many examples of the AndroidManifest.xml which has android.intent.action.BOOT_COMPLETED and some that also have the category of android.intent.category.HOME in there. Does anyone know what the difference (if any) between the two are?

ie.

       <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>

versus

        <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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哎呦我呸! 2024-10-23 06:40:36

AFAIK,你的第一个是错误的。据我所知,BOOT_COMPLETED 广播不应该有该类别。

AFAIK, your first one is wrong. The BOOT_COMPLETED broadcast should not have that category, AFAIK.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文