我可以在任何服务中使用 this.getIntent() 吗?
在我的应用程序中,我有一个活动(Act1)和服务(Ser1)。我通过意图 (i) 调用服务(Ser1),并使用 putExtra() 方法放置一些整数值,我想在此服务中获取该整数值,这可能吗?请帮忙?
In my app I have an activity(Act1) and service (Ser1). I called the service(Ser1) through intent (i) with putting some integer value using putExtra() method and I want to get that integer value in this service is it possible? Please help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在服务中,我们有类似的东西
,在这种情况下,您可以使用“意图”来获取您从活动发送的额外内容。
In the service we have something like
so in this case the "intent" you can use to get the extras which you have send from activity.