SDK里是这样描述:A mapping from String values to various Parcelable types。
它帮助我将数据打包传入intent里面,为使用这些数据提供了便利。
protected void onListItemClick (ListView l, View v, int position, long id)
{
super.onListItemClick(l, v, position, id);
//获得选中项的HashMap对象
HashMap<String,String> map=(HashMap<String,String>)lv.getItemAtPosition(position);
String Type=map.get("Type");
Intent i=new Intent(this,title.class);
Bundle mBundle=new Bundle();
mBundle.putString("type", Type);
i.putExtras(mBundle);
startActivity(i);
}
代码中
1、实例化Bundle 一个对象,用putString(标记,数据)来将数据导入到Bundle对象中;
2、然后将Bundle对象导入到Intent对象中;
3、Intent启动另一个activity。
从intent中读出需要的数据:
bundle = getIntent().getExtras();
if(bundle!=null)
Type=bundle.getString("type");
if(Type!=null)
//从数据库依据所选类型读出 文章的Title,保存在cur中
cur=myDBadapter.getTitle(new String[]{Type});
4、Bundle对象可以从activity.getIntent().getExtras()中返回。 可见,启动当前activity 的Intent对象是由getIntent()来找到的。
5、通过Bundle的getString()方法,就可以读出所要的数据。
这就是Bundle的经典用法,包裹数据放入Intent中,目的在于传输数据。
分享到:
相关推荐
在Android开发中,数据绑定(Data Binding)是一个强大的框架,它允许开发者更加直观地将UI组件与业务数据关联起来,从而简化代码并提高可维护性。这个Demo程序旨在展示数据绑定和事件绑定的基本用法,帮助开发者...
需要注意的是,实际开发中还需要根据具体需求完成所有必须的方法,并且填充真实的数据。 通过以上介绍,我们可以了解到`ExpandableListView`的基本用法及其应用场景。在实际项目中合理运用`ExpandableListView`,...
用法二:包裹并替换内容元素 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // ... vLoad
用Kotlin生成的android活页夹界面 可用类型 原语 Int Long Boolean Float Double String Byte Char 基本数组 BooleanArray ByteArray CharArray DoubleArray FloatArray IntArray LongArray ...
使用反射而不是硬编码序列化来处理 Android 的接口的库。 这个想法是以与 Gson 等相同的自动方式处理序列化。 用法 有 4 种使用库的方法: ParcelableWrapper 可用于包装任何对象并将其作为Parcelable传递 Foo ...
用法 sh build [package] [mode] [options]要么 chmod +x build && ./build -help要么 double-click on it [包裹] -swf (✓ Default: ShockWave Flash) -dmg (✓ Apple disk images) -app (✓ Application bundle) -...