如何从之前的活动返回值?
如何从之前的活动返回值?
在第一个屏幕中,我有一个名为 TXTNIP 的文本字段。但在另一个屏幕上,我也有一个名为 TXTNIP 的文本字段。
两者都有不同的布局。我想从第一个 TXTNIP
获取文本并将其放在第二个 TXTNIP
上。
我怎么能这样做呢?
How do I return values from a previous Activity?
In the first screen, I have a text field called TXTNIP
. But on another screen I have a text field called TXTNIP
too.
Both are in different layouts. I want to get the text from the first TXTNIP
and put it on the second TXTNIP
.
How could I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
阅读[此](http://developer.android.com/reference/android/content/Intent.html
) ,特别是
putExtras()
和getExtras()
。这是您应该做什么的一个粗略示例。
然后在新活动中,您将像这样检索它。
Read [this](http://developer.android.com/reference/android/content/Intent.html
) , specifically
putExtras()
andgetExtras()
.Here is a rough example of what you should do.
And then in the new activity, you would retrieve it like this.
像这样的事情应该可以完成工作:
从意图中获取数据:
something like this should do the job:
getting the data from the intent:
您可以通过 Intent 将附加数据传递给另一个 Activity。查看不同的 Intent.put 方法。
You pass additional data to another activity via the Intent. see different Intent.put methods.