1

如果应用程序安装在 SD 卡上,我如何在启动时启动我的应用程序?如果我的应用程序安装在内部存储器上,那么使用BOOT_COMPLETED完成的广播我们可以达到我们的要求,但是这个 BOOT_COMPLETED 意图是在媒体安装之前广播,所以我们不能使用这个广播。

到目前为止我尝试的是,我使用了另一个意图,MEDIA_MOUNTED但不知道为什么没有收到广播。

这是我的代码
AndroidManifest.xml

<receiver
            android:name=".ui.Receiver"
            android:enabled="true" >
            <intent-filter>
                <action android:name="android.intent.action.MEDIA_MOUNTED" />
                <data android:scheme="file" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
                <action android:name="android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE" />
                <action android:name="android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.PACKAGE_REPLACED" />

                <data android:scheme="package" />
                <data android:path="org.sipchat.sipua" />
            </intent-filter>
        </receiver>

接收器.java

public void onReceive(Context context, Intent intent) {
        String intentAction = intent.getAction();
        if (intentAction.equals(Intent.ACTION_BOOT_COMPLETED)) {
            Toast.makeText(context, "BOOT Completed", Toast.LENGTH_LONG).show();
            on_vpn(false);
            engine(context).register();
        } else if (intentAction.equals(Intent.ACTION_MEDIA_MOUNTED)) {
            Toast.makeText(context, "Media is Mounted", Toast.LENGTH_LONG)
                    .show();
            engine(context).register();
        } else if (intentAction.equals(ConnectivityManager.CONNECTIVITY_ACTION)
                || intentAction.equals(ACTION_EXTERNAL_APPLICATIONS_AVAILABLE)
                || intentAction
                        .equals(ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)
                || intentAction.equals(Intent.ACTION_PACKAGE_REPLACED)) {
            engine(context).register();}}

任何帮助和建议将不胜感激
谢谢

4

1 回答 1

0

应用程序在设备启动时启动,适用于 3.0 以下的 android 版本。有关更多信息,请参阅此帖子链接 01

于 2012-10-04T10:56:03.063 回答