Android 监听开机广播实现应用开机自启动

应用开机自启动的原理是监听开机广播android.intent.action.BOOT_COMPLETED,然后在BroadcastReceiver中打开应用

实现BroadcastReceiver

首先实现一个BroadcastReceiver,该广播接收者监听”android.intent.action.BOOT_COMPLETED”广播,当接收到该广播时,打开该应用的启动页面。

1
2
3
4
5
6
7
8
9
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED")) {
Intent toIntent = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());
context.startActivity(toIntent);
}
}
}

Click and drag to move

在Manifest中声明该广播接收者

需要注意的是该广播接收者只能在Manifest中声明,而不能在代码中启动,否则无法接收到开机广播。

1
2
3
4
5
6
7
<receiver android:name=".base.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</receiver>

Click and drag to move

声明权限

最后别忘了在Manifest中声明接收开机广播的权限,很多人都忘了这一步,导致无法接收到广播

1
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

Click and drag to move

无法接收到广播

这里列举下一些常见的无法接收到开机广播的原因:

  1. 未添加权限
  2. 被系统自带或360手机助手等拦截,需在权限管理设置里放开开机自启动的权限。
  3. 应用安装到sd卡上,安装在sd卡上的应用是收不到BOOT_COMPLETED广播的。
  4. 系统开启了Fast Boot模式,这种模式下系统启动并不会发送BOOT_COMPLETED广播。
  5. 应用程序安装后重来没有启动过,这种情况下应用程序接收不到任何广播。