如何从之前的活动返回值?

发布于 2024-12-12 02:45:35 字数 185 浏览 0 评论 0原文

如何从之前的活动返回值?

在第一个屏幕中,我有一个名为 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 技术交流群。

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

发布评论

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

评论(3

吃兔兔 2024-12-19 02:45:35

阅读[此](http://developer.android.com/reference/android/content/Intent.html
) ,特别是 putExtras()getExtras()

这是您应该做什么的一个粗略示例。

String value;

Intent i = new Intent(currentActivityName.this, nextActivityName.class);
i.putExtras("tag", value);
startActivity(i);

然后在新活动中,您将像这样检索它。

String x = getIntent.getExtras("tag");

Read [this](http://developer.android.com/reference/android/content/Intent.html
) , specifically putExtras() and getExtras().

Here is a rough example of what you should do.

String value;

Intent i = new Intent(currentActivityName.this, nextActivityName.class);
i.putExtras("tag", value);
startActivity(i);

And then in the new activity, you would retrieve it like this.

String x = getIntent.getExtras("tag");
甜扑 2024-12-19 02:45:35

像这样的事情应该可以完成工作:

Intent mIntent = new Intent(this, NextActivity.class)
mIntent.putExtra("key", "value");
startActivity(myIntent);

从意图中获取数据:

mString String = getIntent().getStringExtra("key");

something like this should do the job:

Intent mIntent = new Intent(this, NextActivity.class)
mIntent.putExtra("key", "value");
startActivity(myIntent);

getting the data from the intent:

mString String = getIntent().getStringExtra("key");
一桥轻雨一伞开 2024-12-19 02:45:35

您可以通过 Intent 将附加数据传递给另一个 Activity。查看不同的 Intent.put 方法。

You pass additional data to another activity via the Intent. see different Intent.put methods.

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