是否可以知道活动如何开始?
是否可以知道是哪一个发起了该活动?用户或警报管理员? 我想知道活动是如何开始的。由警报管理器还是由用户?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以访问 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.
如果您自己管理警报,那么您应该能够使用
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 aPendingIntent
, which is essentially anIntent
wrapped in some other data. You have full control over how thisPendingIntent
is created, so the world is your oyster!