Android开机广播

每次开机,android会发送一个广播,如果需要在android启动的时候做一些操作,需要接收广播。

AndroidManifest.xml配置如下:

<receiver android:name=".exercise.boot.BootBroadcastReceiver">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</receiver>

相关推荐