赞
踩
如何实现Android应用开机自启动呢?
Android设备(比如我们的Android手机、Android智能硬件终端......)开机时会发送一条开机广播
:android.intent.action.BOOT_COMPLETED。我们通过监听开机广播来实现。(即:我们写一个广播接收器,接收开机广播,通过Intent跳转应用的入口Activity)
1、在AndroidManifest.xml中声明权限:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <!-- 接收Android设备开机时发送的开机广播所需的权限 -->
2、自定义实现 Android应用开机自启动的广播接收器:
- public class SelfStartReceiver extends BroadcastReceiver {
- @Override
- public void onReceive(Context context, Intent intent) {
- //Android设备开机时会发送一条开机广播:"android.intent.action.BOOT_COMPLETED"
- if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
- Intent splashIntent = new Intent(context, SplashActivity.class);
- splashIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- context.startActivity(splashIntent);
- }
- }
- }
3、在AndroidManifest.xml中静态注册广播:
- <receiver
- android:name=".receiver.SelfStartReceiver"
- android:enabled="true"
- android:exported="true">
- <intent-filter android:priority="100">
- <action android:name="android.intent.action.BOOT_COMPLETED"/>
- </intent-filter>
- </receiver>
亲测在Android 7.1.2上可用。
1、针对Andorid4.0之后需先启动一次APP才可收到开机完成的广播,主要目的是防止恶意程序。
2、检查一下Android设备上是不是安装了360等安全助手之类的软件,如果有,请在软件的自启动软件管理中将app设置为允许。
3、查看系统设置里是否自带自启动软件管理的功能 ,如有:将app设置为【允许开机启动】。
4、系统开启了Fast Boot模式(通俗讲就是刷机模式 - 线刷模式),这种模式下系统启动并不会发送BOOT_COMPLETED广播。
5、检查手机是否设置了app安装首选位置是sd卡,据说安装到sd卡的话,因为手机启动成功后(发送了启动完成的广播后)才加载sd卡,所以app接收不到广播。如果是的话,把app安装到内部存储试试。如果不懂得设置的话,那么直接在AndroidManifest.xml文件中设置安装路径,android:installLocation="internalOnly"(声明在manifest根标签下)
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。