如何为另一个应用程序的广播接收器创建新的意图?

发布于 2024-09-11 11:22:15 字数 618 浏览 8 评论 0原文

在示例中,他们将 Intent 创建为:

Intent intent = new Intent(this, AlarmReceiver.class);

但是假设我的 AlarmReceiver 类位于另一个应用程序中,我如何创建此 Intent?

我尝试过,

new Intent("com.app.AlarmReceiver")

但没有任何反应..它没有被调用..

有什么想法吗?

--使用 Eclipse 上的清单编辑器添加的广播定义:

<receiver android:name="AlarmReceiver"></receiver>
</application>

--
相关:
如何从我的应用程序启动我的应用程序其他应用程序?(但相同的代码不适用于广播..)

In the examples, they create Intent as:

Intent intent = new Intent(this, AlarmReceiver.class);

But suppose my AlarmReceiver class is in another app, how do I create this intent?

I've tried with

new Intent("com.app.AlarmReceiver")

but nothing happens.. It was not called..

Any idea?

--Broadcast definition added using the manifest editor on Eclipse:

<receiver android:name="AlarmReceiver"></receiver>
</application>

--
Related:
How do I start my app from my other app? (but this same code is not working for broadcasts..)

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

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

发布评论

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

评论(1

苏别ゝ 2024-09-18 11:22:15

但是我想我的 AlarmReceiver 类
在另一个应用程序中,我该如何创建
这个意图?

如果编写了其他应用,请将带有自定义操作字符串的 添加到其他应用的 元素,然后将 Intent 与该操作字符串结合使用。

如果您没有编写其他应用程序,请询问编写它的人 Intent 应该是什么样子。

But my suppose my AlarmReceiver class
is in another app, how do I create
this intent?

If you wrote the other app, add an <intent-filter> with a custom action string to the other app's <receiver> element, then use an Intent with that action string.

If you did not write the other app, ask whoever wrote it what the Intent should look like.

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