如何使用 startChildActivity 将数据从一个子活动传输到另一个子活动?
这是我的类名
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须实现一个名为
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 aParcel
so that you can transport it through theIntent
This tutorial will teach you how to do that
http://www.codexperience.co.za/post/passing-an-object-between-activities-using-an-intent