应用开启自启动需要下面步骤
(1)在AndroidManifest.xml中注册广播
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.autoregistration"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:persistent="true">
<receiver android:name=".AutoRegReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
(2)在代码中实现一个广播
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class AutoRegReceiver extends BroadcastReceiver {
private static final String TAG = AutoRegReceiver.class.getSimpleName();
@Override
public void onReceive(Context context, Intent intent) {
String receivedAction = intent.getAction();
if (receivedAction.equals(Intent.ACTION_BOOT_COMPLETED)) {
if (DBG) {
Log.d(TAG, "Action boot completed received..");
}
}
}
}
备注:个别手机(如华为)需要去手机设置面板开启 应用自启动权限
2、自启动失败的原因
接收不到BOOT_COMPLETED广播可能的原因
(1)、BOOT_COMPLETED对应的action和uses-permission没有一起添加
(2)、应用安装到了sd卡内,安装在sd卡内的应用是收不到BOOT_COMPLETED广播的
(3)、系统开启了Fast Boot模式,这种模式下系统启动并不会发送BOOT_COMPLETED广播
(4)、应用程序安装后重来没有启动过,这种情况下应用程序接收不到任何广播,包括BOOT_COMPLETED、ACTION_PACKAGE_ADDED、CONNECTIVITY_ACTION等等。
Android3.1之后,系统为了加强了安全性控制,应用程序安装后或是(设置)应用管理中被强制关闭后处于stopped状态,在这种状态下接收不到任何广播。直到被启动过(用户打开或是其他应用调用)才会脱离这种状态,所以Android3.1之后
(1)、应用程序无法在安装后自己启动
(2)、没有ui的程序必须通过其他应用激活才能启动,如它的Activity、Service、Content Provider被其他应用调用。
存在一种例外,就是应用程序被adb push you.apk /system/app/下是会自动启动的,不处于stopped状态。
使用adb shell 发送广播
terminal :
adb shell am broadcast -aandroid.intent.action.BOOT_COMPLETED
执行结果:
Broadcasting: Intent { act=android.intent.action.BOOT_COMPLETED }
Broadcast completed: result=0
命令发送COMPLETED广播,而不用重启测试机或模拟器来测试BOOT_COMPLETED广播,这条命令可以更精确的发送到某个package,如下:
adb shell am broadcast -aandroid.intent.action.BOOT_COMPLETED-candroid.intent.category.com.qualcomm.qti.autoregistration
执行的结果:
Broadcasting: Intent { act=android.intent.action.BOOT_COMPLETED-candroid.intent.category.com.qualcomm.qti.autoregistration }
Broadcast completed: result=0