直接上代码吧,然后说明放在后面讲
1.创建BootReceiver文件
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
//自启动APP,参数为需要自动启动的应用包名
Intent newIntent = context.getPackageManager().getLaunchIntentForPackage(context.getPackageName());
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newIntent);
}
}
}
2.AndroidManifest.xml
2.1 申请权限
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
2.2 注册广播监听
<receiver
android:name=".BootReceiver"
android:enabled="true"
android:exported="true">
<intent-filter android:priority="1000">
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
这样,就可以通过监听系统重启广播,并且执行启动自己的app的操作了。
写在后面:
app开机自启这个功能,对于在基于安卓板子定制的设备上面(比如说安卓的一体机,广告机之类)做app开发来说,是很常见的一个需求,一般来说,是不会在自己手机上使用的,除非是做自定义的桌面程序。
那么按照我自己的经验,有的设备是区分调试模式和生产模式的,在生产模式下,没办法安装除自己厂家签名以外的所有app,那么这个时候想要实现app开机自启,可能就需要厂家支持,比如说把包名放在‘白名单’或者是直接修改Rom包之类的定制化操作了。