从广播接收器启动另一个应用程序

发布于 2024-12-21 12:01:48 字数 543 浏览 0 评论 0原文

我试图在设备启动后从接收器启动一个活动:

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(ComponentName.unflattenFromString("other.apps.package.name/.ActivityName"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_LAUNCHER); 
context.startActivity(intent);

当我从我的活动中调用它时,此代码工作正常,但是当我的 BroadcastReceiver 在启动后执行它时,它会失败。我的 Logcat 显示:

ActivityNotFoundException: Have you declared the activity in your AndroidManifest.xml?

任何指点都将不胜感激。提前致谢。

I am trying to start an activity from a Receiver after the device boot:

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(ComponentName.unflattenFromString("other.apps.package.name/.ActivityName"));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_LAUNCHER); 
context.startActivity(intent);

This code just works fine when I call it from my activity however it fails when my BroadcastReceiver executes it after bootup. My Logcat shows:

ActivityNotFoundException: Have you declared the activity in your AndroidManifest.xml?

Any pointers will be greatly appreciated. Thanks in advance.

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

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

发布评论

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

评论(3

坏尐絯 2024-12-28 12:01:48

Intent意图 = new Intent(context, Activity.class);
Intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(意图);

我认为只需要这 3 行,上下文将是您在广播接收器中收到的上下文。

Intent intent = new Intent(context, activity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);

i think this 3 lines only needed and the context will be the context u receive in broadcast receiver.

独木成林 2024-12-28 12:01:48

当您在清单中声明 Activity 时,您可能拼写或犯了错误。确保你把它放在那里并且拼写正确

You probably spelled or made a error when you declared your Activity in your manifest. Make sure you put it in there and spelled everything correctly

勿忘初心 2024-12-28 12:01:48

我认为问题出在以下行中。您的活动的名称是什么?是“ActivityName”吗?还要检查包名称。

intent.setComponent(ComponentName.unflattenFromString("other.apps.package.name/.ActivityName"))

I think the problem is in the following Line.what is the name of your Activity?is it "ActivityName"?Also Check package name.

intent.setComponent(ComponentName.unflattenFromString("other.apps.package.name/.ActivityName"))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文