1.首先开机
启动后系统会发出一个Standard Broadcast Action,名字叫
android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。
2.构造一个BroadcastReceiver类,
重构其抽象方法onReceive
(Context context, Intent intent),在其中启动你想要启动的Service。
3.在
AndroidManifest.xml中,首先加入
来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其
中加入
,以使其能捕捉到这个Action。
一个例子