`
80demon
  • 浏览: 77853 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Android开发中Bundle用法 包裹数据

 
阅读更多

 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

    在Android开发中,数据绑定(Data Binding)是一个强大的框架,它允许开发者更加直观地将UI组件与业务数据关联起来,从而简化代码并提高可维护性。这个Demo程序旨在展示数据绑定和事件绑定的基本用法,帮助开发者...

    Android之ExpandableListView笔记

    需要注意的是,实际开发中还需要根据具体需求完成所有必须的方法,并且填充真实的数据。 通过以上介绍,我们可以了解到`ExpandableListView`的基本用法及其应用场景。在实际项目中合理运用`ExpandableListView`,...

    Android代码-简单实用的页面多状态布局(content,loading,empty,error)

    用法二:包裹并替换内容元素 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // ... vLoad

    kaidl:使用Kotlin生成类似AIDL的android活页夹接口

    用Kotlin生成的android活页夹界面 可用类型 原语 Int Long Boolean Float Double String Byte Char 基本数组 BooleanArray ByteArray CharArray DoubleArray FloatArray IntArray LongArray ...

    auto-parcelable

    使用反射而不是硬编码序列化来处理 Android 的接口的库。 这个想法是以与 Gson 等相同的自动方式处理序列化。 用法 有 4 种使用库的方法: ParcelableWrapper 可用于包装任何对象并将其作为Parcelable传递 Foo ...

    flash-compiler:另一个 Flash 编译器

    用法 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) -...

Global site tag (gtag.js) - Google Analytics