我可以在任何服务中使用 this.getIntent() 吗?

发布于 2024-12-12 12:47:19 字数 107 浏览 0 评论 0原文

在我的应用程序中,我有一个活动(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 技术交流群。

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

发布评论

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

评论(1

笔芯 2024-12-19 12:47:20

在服务中,我们有类似的东西

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

  return super.onStartCommand(intent, flags, startId);

}

,在这种情况下,您可以使用“意图”来获取您从活动发送的额外内容。

In the service we have something like

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

  return super.onStartCommand(intent, flags, startId);

}

so in this case the "intent" you can use to get the extras which you have send from activity.

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