多个意图绑定到应用程序小部件中的一个按钮?

发布于 2024-11-19 02:01:28 字数 70 浏览 2 评论 0原文

在android的appwidget中,有没有一种方法可以将多个挂起的意图设置为一个按钮?目前,它只识别我声明的最后一个意图。

In an appwidget in android, is there a way to set multiple pending intents to one button? Currently, it's only recognizing the last intent I declare.

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

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

发布评论

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

评论(2

云归处 2024-11-26 02:01:28

在android的appwidget中,有没有一种方法可以将多个挂起的意图设置为一个按钮?

不,抱歉。每个View 仅有一个点击PendingIntent

In an appwidget in android, is there a way to set multiple pending intents to one button?

No, sorry. Only one on-click PendingIntent per View.

述情 2024-11-26 02:01:28

您可以链接待处理的意图,以便在完成工作后触发下一个意图,这就是我的做法。我有一个小部件,它会触发一个未决的意图来启动一项服务,该服务在完成后又会触发另一个意图。或者,您可以让pendingIntent启动一个产生多个意图的服务。

You can link the pending intent to fire off an intent for next one when its done with its work, that's how I do it. I have a widget that fires a pendingIntent to launch a service which in turn fires off another Intent when it's done. Alternatively, you can have the pendingIntent launch a service that spawns multiple intents.

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