如何使用 startChildActivity 将数据从一个子活动传输到另一个子活动?

发布于 2024-11-28 00:24:13 字数 242 浏览 0 评论 0原文

这是我的类名

public class Register extends TabGroupActivity

,我正在调用第二个活动,

startChildActivity("Register", new Intent(Register.this,RegisterForm.class));

任何人都可以帮助我如何通过此方法传输一些数据

this is my class name

public class Register extends TabGroupActivity

I am calling 2nd activity through

startChildActivity("Register", new Intent(Register.this,RegisterForm.class));

can any one help me how to transfer some data through this method

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

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

发布评论

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

评论(2

夏末 2024-12-05 00:24:13
Intent i = new Intent(Register.this,RegisterForm.class);
i.putExtra("name", yourdata);//i assume you are adding some string data
startChildActivity("Register", i);

//in RegisterForm.class

Intent i = RegisterForm.this.getIntent();
i.getStringExtra("name", "default Value you want");
Intent i = new Intent(Register.this,RegisterForm.class);
i.putExtra("name", yourdata);//i assume you are adding some string data
startChildActivity("Register", i);

//in RegisterForm.class

Intent i = RegisterForm.this.getIntent();
i.getStringExtra("name", "default Value you want");
心的憧憬 2024-12-05 00:24:13

您必须实现一个名为 Parecelable 的接口,并将您的对象写入 Parcel 中,以便您可以通过 Intent 传输它

本教程将教您如何做到这一点

http://www.codexperience.co.za/post/passing-an-object- Between-activities-using-an-intent

You have to implement an interface called Parecelable and write your object inside a Parcel so that you can transport it through the Intent

This tutorial will teach you how to do that

http://www.codexperience.co.za/post/passing-an-object-between-activities-using-an-intent

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