Android对开机自启动的限制
发布时间:2015-06-05 来源:查字典编辑
摘要:谈到如何实现程序的开机自启动,我想大多数朋友都会认为小菜一碟,不就是注册一个BOOT_COMPLETED消息嘛!在AndroidManife...
谈到如何实现程序的开机自启动,我想大多数朋友都会认为小菜一碟,不就是注册一个BOOT_COMPLETED消息嘛!
在AndroidManifest.xml里面加入一个receiver,就像这样:
<SPAN style="FONT-SIZE: 18px"> <receiver android:name="BootReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> <action android:name="com.android.settings.MAIL_SENT"/> </intent-filter> </receiver></SPAN>