API文档说明
1.介绍
用于不同Activity之间的数据传递
1.重要方法
-
clear():清除此Bundle映射中的所有保存的数据。
-
clone():克隆当前Bundle
-
containsKey(String key):返回指定key的值
-
getString(String key):返回指定key的字符
-
hasFileDescriptors():指示是否包含任何捆绑打包文件描述符
-
isEmpty():如果这个捆绑映射为空,则返回true
-
putString(String key, String value):插入一个给定key的字符串值
-
readFromParcel(Parcel parcel):读取这个parcel的内容
-
remove(String key):移除指定key的值
-
writeToParcel(Parcel parcel, int flags):写入这个parcel的内容
官方文档
http://developer.android.com/reference/android/os/Bundle.html
实例
public class BundleDemo extends Activity {
private EditText etName;
Button btn;
/*
* (non-Javadoc)
*
* @see android.app.Activity#onCreate(android.os.Bundle)
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.bundle);
etName = (EditText) findViewById(R.id.etname);
btn = (Button) findViewById(R.id.btn);
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String info = etName.getText().toString();
Bundle bundle = new Bundle();
//保存输入的信息
bundle.putString("name", info);
Intent intent=new Intent(BundleDemo.this,BundleDemo1.class);
intent.putExtras(bundle);
finish();
startActivity(intent);
}
});
}
}
public class BundleDemo1 extends Activity {
private TextView etName;
/* (non-Javadoc)
* @see android.app.Activity#onCreate(android.os.Bundle)
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.b1);
etName=(TextView)findViewById(R.id.txtname);
Bundle b=getIntent().getExtras();
//获取Bundle的信息
String info=b.getString("name");
etName.setText("您的姓名:"+info);
}
}
与SharedPreferences的区别
SharedPreferences是简单的存储持久化的设置,就像用户每次打开应用程序时的主页,它只是一些简单的键值对来操作。它将数据保存在一个xml文件中
Bundle是将数据传递到另一个上下文中或保存或回复你自己状态的数据存储方式。它的数据不是持久化状态。
参考链接
Android之Bundle传递数据详解与实例及Bundle与SharedPreferences的区别 - ForrestWoo - 博客园
Android Bundle类 - randyjiawenjie的专栏 - 博客频道 - CSDN.NET
补充
Bundle传递类对象
Android中Intent传递类对象提供了两种方式一种是 通过实现Serializable接口传递对象,一种是通过实现Parcelable接口传递对象。
要求被传递的对象必须实现上述2种接口中的一种才能通过Intent直接传递。
Intent中传递这2种对象的方法:
Bundle.putSerializable(Key,Object); //实现Serializable接口的对象
Bundle.putParcelable(Key, Object); //实现Parcelable接口的对象
实例
Intent intent=new Intent(ReportActivity.this,SendPoliceActivity.class);
Bundle bundle=new Bundle();
bundle.putParcelable("location",mapPoi.getPosition());
bundle.putString("address", mapPoi.getName());
intent.putExtra("mybundle",bundle);
startActivity(intent);
接收
Intent intent=getIntent();
bundle=intent.getBundleExtra("mybundle");
sendpoliceaddress.setText(bundle.getString("address"));
latLng=bundle.getParcelable("location");
参考链接
Android 开发笔记——通过 Intent 传递类对象 - Merray - 博客园