是否可以知道活动如何开始?

发布于 2024-10-26 12:32:10 字数 59 浏览 4 评论 0原文

是否可以知道是哪一个发起了该活动?用户或警报管理员? 我想知道活动是如何开始的。由警报管理器还是由用户?

is it possible to know which one started the activity? user or alarmmanager?
i want to know how the activiy started. By alarmmanager or by user?

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

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

发布评论

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

评论(2

终止放荡 2024-11-02 12:32:10

您可以访问 Intent 对象,该对象启动您的 Activity 并从中获取信息,例如通过 getAction() 或使用 Extras。

You can access Intent object, which started your activity and get information from it, via getAction() for instance, or using Extras.

红墙和绿瓦 2024-11-02 12:32:10

如果您自己管理警报,那么您应该能够使用 putExtra 在意图中存储特殊标志。

编辑 -
事实上,所有 AlarmManager 设置方法都需要一个 PendingIntent,它本质上是一个包裹在其他数据中的 Intent。您可以完全控制如何创建此 PendingIntent,因此世界尽在您的掌控之中!

If you're managing the alarms yourself then you should be able to store a special flag in the intent using putExtra.

Edit -
In fact, all of the AlarmManager set methods require a PendingIntent, which is essentially an Intent wrapped in some other data. You have full control over how this PendingIntent is created, so the world is your oyster!

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