使用Bundle在Activity之间传递数据

Bundle可能过put****()方法添加各种类型的数据,Intent也可以通过putExtras(Bundle)将数据添加进去,然后通过startActivity()跳到下一下Activity的时候就把数据也传到下一个Activity了。

package com.intent;  
  
import android.app.Activity;  
import android.content.Intent;  
import android.os.Bundle;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
  
public class TestIntentActivity extends Activity {  
    /** Called when the activity is first created. */  
    @Override  
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
        Button button = (Button)this.findViewById(R.id.button);  
        button.setOnClickListener(new OnClickListener() {  
              
            public void onClick(View v) {  
                Intent intent = new Intent(TestIntentActivity.this,SecondActivity.class);  
                Bundle bundle = new Bundle();  
                bundle.putString("key_name", "name");  
                bundle.putString("key_age", "age");  
                intent.putExtras(bundle);  
                startActivity(intent);  
            }  
        });  
    }  
}  

 

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    android:orientation="vertical" >  
  
    <Button  
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:text="@string/intent"  
        android:id="@+id/button" />  
  
</LinearLayout>  


package com.intent;  
  
import android.app.Activity;  
import android.os.Bundle;  
import android.widget.TextView;  
  
public class SecondActivity extends Activity{  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.second);  
        TextView tv1 = (TextView)this.findViewById(R.id.tv1);  
        TextView tv2 = (TextView)this.findViewById(R.id.tv2);  
          
        Bundle bundle = this.getIntent().getExtras();  
        tv1.setText(bundle.getString("key_name"));  
        tv2.setText(bundle.getString("key_age"));  
    }  
  
}  


<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:orientation="vertical" >  
      
    <TextView android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:id="@+id/tv1"/>  
    <TextView android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:id="@+id/tv2"/>  
</LinearLayout>  


最后将新的Activity添加到manifest.xml里面就可以了.

===================

-=--------------------------------

 

Android中Intent与Bundle 在传值时有什么不同 -

 

前一阵子逛EOE 看有有人提问Intent 和Bundle有什么样的区别

既然Intent可以传值 为什么还搞个Bundle来个传值出来

举个例子先我现在要从A界面 跳转到B界面或者C界面 
这样的话 我就需要写2个Intent如果你还要涉及的传值的话 你的Intent就要写两遍添加值的方法 那么 如果我用1个Bundle直接把值先存里边 然后再存到Intent中 不就更简洁吗?

另外一个例子如果我现在有Activity A ,B ,C;
现在我要把值通过A经过B传给C
你怎么传 如果用Intent的话 A-B先写一遍 再在B中都取出来 然后在把值塞到Intent中 再跳到C 累吗?
如果我在A中用了 Bundle 的话我把Bundle传给B 在B中再转传到CC就可以直接去了 
这样的话 还有一个好处 就是在B中 还可以给Bundle对象添加新的 key - value同样可以在C中取出来

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值