使用Bundle在Activity之间交换数据

本文介绍如何使用Bundle在Android的两个Activity之间传递数据。通过实例演示了如何从一个Activity收集用户输入的数据并将其发送到另一个Activity,并在接收端展示这些数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

/*
 * 使用Bundle在Activity之间交换数据
 * 当一个Activity启动另一个Activity时,常常会有一些数据
 * 需要传过去,我们将数据放入Intent中。
 */
import 略

public class Ex003_07Activity extends Activity {
	private Button sumbit;

	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		sumbit = (Button) findViewById(R.id.sumbit);
		sumbit.setOnClickListener(new Button.OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				EditText name = (EditText) findViewById(R.id.name);
				EditText passwd = (EditText) findViewById(R.id.passwd);
				RadioButton male = (RadioButton) findViewById(R.id.male);
				String gender = male.isChecked() ? "男" : "女";
				Bundle bundle = new Bundle();
				bundle.putString("name", name.getText().toString());
				bundle.putString("passwd", passwd.getText().toString());
				bundle.putString("sex", gender);
				Intent intent = new Intent();
				intent.setClass(Ex003_07Activity.this, Ex003_07Activity2.class);
				intent.putExtras(bundle);
				startActivity(intent);
			}

		});
	}
}


public class Ex003_07Activity2 extends Activity{
	private TextView name;
	private TextView passwd;
	private TextView sex;
	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.layout1);
		name=(TextView)findViewById(R.id.name);
		passwd=(TextView)findViewById(R.id.passwd);
		sex=(TextView)findViewById(R.id.sex);
		Intent intent=this.getIntent();
		Bundle data=intent.getExtras();
		name.setText("你的用户名是:"+data.getString("name"));
		passwd.setText("你的密码是:"+data.getString("passwd"));
		sex.setText("你的性别是:"+data.getString("sex"));
	}
}


下面我们来看运行后的界面:

 

点击注册按钮后的界面是:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值