将服务器对活动的响应显示为文本视图

发布于 12-08 17:55 字数 97 浏览 1 评论 0原文

我正在制作一个社交应用程序,在其中我收到服务器端的响应..即 profilr 朋友的电子邮件。我想将该响应带到下一个活动并显示为文本视图。 如何做到这一点?谁能帮我解决这个问题吗?

I am making a social app in which I am getting response from server side.. i.e emails of profilr friends. I want to take that response to next activity and display as the textview.
How to do this?? Can anyone help me over this??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

英雄似剑2024-12-15 17:55:21

firstActivity.java 中获取字符串中的响应,然后借助 Intent.putExtra 将值传递给 secondActivity.java 并获取、分配到相关的 TextView

To Put

Intent i = new Intent(firstActivity.this, secondActivity.class);
i.putExtra("key", responseString);
startActivity(i);

To fetch

String stringOnTextView =getIntent().getExtras().getString("key");

In firstActivity.java take the response in String and then pass the value to secondActivity.java with the help of Intent.putExtra and fetch, assign to the related TextView

To Put

Intent i = new Intent(firstActivity.this, secondActivity.class);
i.putExtra("key", responseString);
startActivity(i);

To fetch

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