这是我的类名
public class Register extends TabGroupActivity
我正在通过
呼叫第二个活动startChildActivity("Register", new Intent(Register.this,RegisterForm.class));
谁能告诉我如何通过这种方法传输一些数据
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");
你必须实现一个名为Parecelable
的接口,并将你的对象写入Parcel
中,以便你可以通过Intent
传输它
本教程将教你如何做到这一点
http://www.codexperience.co.za/post/passing-an-object-between-activities-using-an-intent