Start an Activity on Phone Boot in Android
问题 I want to start my application automatically when the phone boots. I declared a BroadcastReceiver in the manifest file. <receiver android:name=".Autostart"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> I made a java file for the receiver. Autostart.java public class Autostart extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent)