如何为另一个应用程序的广播接收器创建新的意图?
在示例中,他们将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您编写了其他应用,请将带有自定义操作字符串的
添加到其他应用的
元素,然后将Intent
与该操作字符串结合使用。如果您没有编写其他应用程序,请询问编写它的人
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 anIntent
with that action string.If you did not write the other app, ask whoever wrote it what the
Intent
should look like.