使用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里面就可以了

  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 在AndroidActivity中,可以使用Bundle对象来将数据传递给其他Activity。在发送Activity中,使用putExtra()方法将数据放入Bundle对象中,再传递给目标Activity。在目标Activity中,使用getExtras()方法获取Bundle对象,从而获取数据。可以根据数据的类型使用不同的getXXX()方法获取对应的类型数据。 ### 回答2: BundleAndroid中一个常用的数据传递方式,它是一种键值对的数据结构,可以存储各种数据类型,如字符串、整数、布尔值等。在Android中,我们经常需要在不同的Activity之间传递数据,而使用Bundle可以简单有效地实现这一目的。下面将详细介绍如何使用BundleActivity之间交换数据。 1.将数据放入Bundle传递 在要传递数据Activity中,可以通过以下代码将数据放入Bundle中: ``` //创建一个Bundle对象 Bundle bundle = new Bundle(); //封装数据 bundle.putString("key1","value1"); bundle.putInt("key2", 2); bundle.putBoolean("key3", true); //将bundle传递给另一个Activity Intent intent = new Intent(MainActivity.this,TargetActivity.class); intent.putExtras(bundle); startActivity(intent); ``` 在上面的代码中,我们首先创建了一个Bundle对象,并使用putString、putInt、putBoolean等方法将数据封装到Bundle对象中。然后通过Intent将Bundle对象传递给需要接收数据的Activity。 2.在另一个Activity中获取数据 接收数据的Activity可以通过以下代码获取传递过来的数据: ``` //获取intent中的Bundle对象 Bundle bundle = getIntent().getExtras(); //从bundle中取出数据 String value1 = bundle.getString("key1"); int value2 = bundle.getInt("key2"); boolean value3 = bundle.getBoolean("key3"); ``` 首先我们通过getIntent().getExtras()方法获取到Intent中传递过来的Bundle对象。然后我们可以使用getString、getInt、getBoolean等方法从Bundle中取出我们需要的数据。 在使用Bundle进行数据传递时,需要注意以下几点: 1. 要确保key值在传递数据时一致,否则会导致数据无法传递或获取不到。 2. Bundle对象只能用于在两个Activity之间传递数据,不适用于跨进程的数据传递。 3. 在存储数据时,要注意数据的类型与大小,尤其是数据量较大时,需要考虑使用其他方式,如SharedPreferences、SQLite等存储数据。 综上所述,BundleAndroid中一种简单而有效的数据传递方式,在进行Activity之间的数据传递时,可以优先考虑使用Bundle。 ### 回答3: BundleAndroid中用于传输数据的一种数据结构,使用Bundle可以轻松地在Activity之间传输数据。下面是使用BundleActivity之间交换数据的示例: 1. 在要发送数据的活动中,创建一个Bundle对象并将需要传递的数据添加到该对象中。例如,我们要将用户名和密码传递给另一个活动: ``` String username = "John"; String password = "123456"; Bundle bundle = new Bundle(); bundle.putString("username", username); bundle.putString("password", password); ``` 2. 启动要接收数据的活动,并将Bundle对象传递给该活动。以下是一个例子: ``` Intent intent = new Intent(this, ReceiveActivity.class); intent.putExtras(bundle); startActivity(intent); ``` 3. 在接收数据的活动中,获取传递的数据并将其用于需要的操作。例如,我们可以在接收活动中检索用户名和密码的值: ``` Bundle extras = getIntent().getExtras(); if (extras != null) { String username = extras.getString("username", ""); String password = extras.getString("password", ""); } ``` 注意:使用Bundle传递数据时,存储的数据类型应该是Android支持的数据类型,如String、int、float等。  综上所述,使用BundleActivity之间交换数据非常方便可靠,这种方法适用于需要传递大量数据或传递复杂数据结构的场景,可以大大简化Android编程的工作量。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值