Android Activity之间参数传递

本文介绍了在Android应用程序中不同Activity之间进行数据传递的四种常见方法,包括使用Intent传递简单数据、利用Bundle打包复杂数据、通过Serializable接口传递对象以及如何处理带返回值的数据交互。
摘要由CSDN通过智能技术生成
方式1-简单数据:
参数传递
Intent intent =new Intent(MainActivity.this,MainActivity2.class);
intent.putExtra("name", "小明");
startActivity(intent);
参数获取
String parame1 = getIntent().getStringExtra("name");  

方式2-bundle:
参数传递
Intent intent =new Intent(MainActivity.this,MainActivity2.class);
Bundle bundle=new Bundle();
bundle.putString("name", "小明");
bundle.putInt("age", 20);
intent.putExtras(bundle);startActivity(intent);
参数获取
Bundle bundle = getIntent().getExtras();
String name = bundle.getString("name");
int name = bundle.getInt("age");

方式3-对象:
参数传递
Intent intent =new Intent(MainActivity.this,MainActivity2.class);
User user = new User("小明",20);//User实现Serializable
intent.putExtra("user", user);
startActivity(intent);
参数获取
User parame1 = (User)getIntent().getSerializableExtra("user");

方式4-传递并获取返回的参数
传递参数
Intent intent =new Intent(MainActivity.this,MainActivity2.class);
intent.putExtra("name", "小明");
startActivityForResult(intent, 1);
处理返回参数
@Override
protected void onActivityResult(int arg0, int arg1, Intent arg2) {
	super.onActivityResult(arg0, arg1, arg2);
	//处理返回参数
}

返回参数
Intent intent =new Intent();
intent.putExtra("data", "你好");
setResult(1, intent);
finish();


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值