使用bundle在activity间传递数据

1.1从源Activity 中传递数据

 

1
2
3
4
5
6
7
Intent openWelcomeActivityIntent= new  Intent();
Bundle myBundelForName= new  Bundle();
myBundelForName.putString( "Key_Name" ,inName.getText().toString());
myBundelForName.putString( "Key_Age" ,inAge.getText().toString());
openWelcomeActivityIntent.putExtras(myBundelForName);
openWelcomeActivityIntent.setClass(AndroidBundel. this , Welcome. class );
startActivity(openWelcomeActivityIntent);

 

1.2目标Activity 中获取数据

 

1
2
3
4
//从Intent 中获取数据
Bundle myBundelForGetName= this .getIntent().getExtras();
String name=myBundelForGetName.getString( "Key_Name" );
myTextView_showName.setText( "欢迎您进入:" +name);

 

使用Bundle 在Activity 间传递数据2: 
2.1从源请求Activity 中通过一个Intent 把一个服务请求传到目标Activity 中

1
2
3
4
5
6
7
8
9
//从Intent 中获取数据
Bundle myBundelForGetName= this .getIntent().getExtras();
String name=myBundelForGetName.getString( "Key_Name" );
myTextView_showName.setText( "欢迎您进入:" +name);
private  Intent toNextIntent; //Intent 成员声明
toNextIntent= new  Intent(); //Intent 定义
toNextIntent.setClass(TwoActivityME3. this , SecondActivity3. class );
//设定开启的下一个Activity
startActivityForResult(toNextIntent, REQUEST_ASK););

2.2开启Intent 时候,把请求码同时传递在源请求Activity 中等待Intent 返回应答结果,通过重载onActivityResult()方法

 

1
2
3
4
5
6
7
8
9
10
11
12
13
@Override
protected  void  onActivityResult( int  requestCode, int  resultCode,Intent data) {
   super .onActivityResult(requestCode, resultCode, data);
   if (requestCode==REQUEST_ASK){
     if (resultCode==RESULT_CANCELED){
       setTitle( "Cancel****" );
     } else  if (resultCode==RESULT_OK){
       showBundle=data.getExtras(); //从返回的Intent中获得Bundle
       Name=showBundle.getString( "myName" ); //从bundle中获得相应数据
        text.setText( "the name get from the second layout:\n" +Name);
      }
     }
}

☻ 第一个参数是你开启请求Intent时的对应请求码,可以自己定义。 
☻ 第二个参数是目标Activity返回的验证结果码 
☻ 第三个参数是目标Activity返回的Intent 
2.3目标Activity 中发送请求结果代码,连同源Activity 请求的数据一同绑定到Bundle 
中通过Intent 传回源请求Activity 中

 

1
2
3
4
5
6
backIntent= new  Intent();
stringBundle= new  Bundle();
stringBundle.putString( "myName" , Name);
backIntent.putExtras(stringBundle);
setResult(RESULT_OK, backIntent); //返回Activity结果码
finish();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值