Android 在启动时从 BroadcastReceiver 崩溃启动应用程序

发布于 2024-10-24 05:00:52 字数 839 浏览 3 评论 0原文

我尝试启动我的 Android 2.1 Galaxy S 手机,但它崩溃了。

这是我的接收器,如果我注释掉 context.startActivity(i) 我不会崩溃,否则我会在开机时看到它。使用相同 ACTION 从另一个活动启动活动不会导致崩溃。这似乎只是在启动时。

public class MyBroadcastReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        Intent i = new Intent();
        i.setAction("DISPLAY_FIRSTPAGE");
        context.startActivity(i);
    }
}

我在清单中设置了一个接收器,如下所示:

<receiver android:name=".MyBroadcastReceiver">
             android:enabled="true" android:exported="false"
             android:permission="android.permission.RECEIVE_BOOT_COMPLETED"> 
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter> 
</receiver>

I am trying to start my Android 2.1 Galaxy S Phone on boot and it crashes.

Here is my receiver if I comment out context.startActivity(i) I don't get crash otherwise I see it on powerup. startActivity from another activity using same ACTION does not cause crash. This seems to be just on Boot.

public class MyBroadcastReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        Intent i = new Intent();
        i.setAction("DISPLAY_FIRSTPAGE");
        context.startActivity(i);
    }
}

I setup an receiver in the manifest like this:

<receiver android:name=".MyBroadcastReceiver">
             android:enabled="true" android:exported="false"
             android:permission="android.permission.RECEIVE_BOOT_COMPLETED"> 
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter> 
</receiver>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心房敞 2024-10-31 05:00:53

请先查看日志,然后再进行其他操作。在这种情况下,问题(包括原始代码和固定代码)将在日志中的崩溃中得到非常清楚的解释。

Please first look at the log before anything else. In this case the problem (both with your original code and your fixed code) will be pretty clearly explained in the crash in the log.

为人所爱 2024-10-31 05:00:53

您显然没有告诉它要启动什么(除非您指定您的活动在清单中处理 DISPLAY_FIRSTPAGE 意图,这不是一个好主意)。尝试一些类似的事情:

Intent i = new Intent(context, MyActivity.class);
context.startActivity(i);

You're clearly not telling it what to launch (unless you specify that your activity handles DISPLAY_FIRSTPAGE intents in the manifest, which wouldn't be a good idea). Try something along the lines of:

Intent i = new Intent(context, MyActivity.class);
context.startActivity(i);
丿*梦醉红颜 2024-10-31 05:00:53

这对我有用:

    Intent i = new Intent(context, MyService.class);
    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        context.startForegroundService(i);
    } else {
        context.startService(i);
    }

This is what worked for me:

    Intent i = new Intent(context, MyService.class);
    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        context.startForegroundService(i);
    } else {
        context.startService(i);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文