“Intent.ACTION_PRE_BOOT_COMPLETED”的功能是什么?

时间:2012-07-05 14:02:18

标签: android android-intent

我想知道Intent.ACTION_PRE_BOOT_COMPLETED的确切功能。目前,我的要求是在完成设备启动之前,即在Intent.ACTION_BOOT_COMPLETED的呼叫之前完成任务。 任何人都可以指导我如何继续满足要求吗?在这方面的任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:3)

ACTION_PRE_BOOT_COMPLETED在ActivityManagerService.java::systemReady中发送。

但要接收它,你的应用程序的uid必须是system(1000)。

                for (int i=ris.size()-1; i>=0; i--) {
                    if ((ris.get(i).activityInfo.applicationInfo.flags
                            &ApplicationInfo.FLAG_SYSTEM) == 0) {
                        ris.remove(i);
                    }
                }

此外,这次广播只能在每次升级时收到一次(这里不太确定,也许应该是每次擦除数据)。

请注意以下代码,如果目标位于lastDoneReceivers中,则会将其删除。

                ArrayList<ComponentName> lastDoneReceivers = readLastDonePreBootReceivers();

                final ArrayList<ComponentName> doneReceivers = new ArrayList<ComponentName>();
                for (int i=0; i<ris.size(); i++) {
                    ActivityInfo ai = ris.get(i).activityInfo;
                    ComponentName comp = new ComponentName(ai.packageName, ai.name);
                    if (lastDoneReceivers.contains(comp)) {
                        ris.remove(i);
                        i--;
                    }
                }

从文件/data/system/called_pre_boots.dat读取lastDoneReceivers。

private static File getCalledPreBootReceiversFile() {
    File dataDir = Environment.getDataDirectory();
    File systemDir = new File(dataDir, "system");
    File fname = new File(systemDir, "called_pre_boots.dat");
    return fname;
}

static final int LAST_DONE_VERSION = 10000;

private static ArrayList<ComponentName> readLastDonePreBootReceivers() {
    ArrayList<ComponentName> lastDoneReceivers = new ArrayList<ComponentName>();
    File file = getCalledPreBootReceiversFile();
    FileInputStream fis = null;
    try {
        fis = new FileInputStream(file);
        DataInputStream dis = new DataInputStream(new BufferedInputStream(fis, 2048));
        int fvers = dis.readInt();
        if (fvers == LAST_DONE_VERSION) {
            String vers = dis.readUTF();
            String codename = dis.readUTF();
            String build = dis.readUTF();
            if (android.os.Build.VERSION.RELEASE.equals(vers)
                    && android.os.Build.VERSION.CODENAME.equals(codename)
                    && android.os.Build.VERSION.INCREMENTAL.equals(build)) {
                int num = dis.readInt();
                while (num > 0) {
                    num--;
                    String pkg = dis.readUTF();
                    String cls = dis.readUTF();
                    lastDoneReceivers.add(new ComponentName(pkg, cls));
                }
            }
        }
    } catch (FileNotFoundException e) {
    } catch (IOException e) {
        Slog.w(TAG, "Failure reading last done pre-boot receivers", e);
    } finally {
        if (fis != null) {
            try {
                fis.close();
            } catch (IOException e) {
            }
        }
    }
    return lastDoneReceivers;
}

答案 1 :(得分:-1)

没有ACTION_PRE_BOOT_COMPLETED这样的动作。我认为你通常无法满足你的要求。可能是系统签名应用程序有一些机制可以做到这一点。