How to open my android app at a start up of android mobile? [duplicate]
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to Start an Application on Startup? I am new to android and I have my android app. I just want to open my app at start up of my android mobile. Plz tell me How to do this? I am using Eclipse with android sdk 2.3.3 回答1: If you want to do it pragmatically <receiver android:name=".MyServiceManager" android:enabled="true" > <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> <category