starting android application
I want my app开发者_JAVA技巧lication to be started whenever the phone is turned on or restarted. can anyone give me some suggestions regarding this please.
thanks kaisar
You can set a broadcast receiver which can notify that the device boot is complete
android:name="android.intent.action.BOOT_COMPLETED"
Check this link out
http://www.androidcompetencycenter.com/2009/06/start-service-at-boot/
精彩评论