`

Android Bundle类

 
阅读更多

http://blog.csdn.net/randyjiawenjie/article/details/6651437

 

今天发现自己连Bundle类都没有搞清楚,于是花时间研究了一下。

根据google官方的文档(http://developer.android.com/reference/android/os/Bundle.html

Bundle类是一个key-value对,“A mapping from String values to various Parcelable types.

类继承关系:

java.lang.Object
     android.os.Bundle

Bundle类是一个final类:
public final class
Bundle
extends Objectimplements Parcelable Cloneable

两个activity之间的通讯可以通过bundle类来实现,做法就是:

(1)新建一个bundle类

[java] view plain copy
  1. Bundle mBundle =  new  Bundle();   

(2)bundle类中加入数据(key -value的形式,另一个activity里面取数据的时候,就要用到key,找出对应的value)

[java] view plain copy
  1. mBundle.putString( "Data" "data from TestBundle" );  


(3)新建一个intent对象,并将该bundle加入这个intent对象

  1. Intent intent =  new  Intent();    
  2. intent.setClass(TestBundle.this , Target. class );    
  3. intent.putExtras(mBundle);  

完整代码如下:

android mainfest.xml如下:

[java] view plain copy
  1. <?xml version= "1.0"  encoding= "utf-8" ?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"   
  3.       package = "com.tencent.test"   
  4.       android:versionCode="1"   
  5.       android:versionName="1.0" >  
  6.     <application android:icon="@drawable/icon"  android:label= "@string/app_name" >  
  7.         <activity android:name=".TestBundle"   
  8.                   android:label="@string/app_name" >  
  9.             <intent-filter>  
  10.                 <action android:name="android.intent.action.MAIN"  />  
  11.                 <category android:name="android.intent.category.LAUNCHER"  />  
  12.             </intent-filter>  
  13.         </activity>  
  14.     <activity android:name=".Target" ></activity>  
  15.     </application>  
  16.     <uses-sdk android:minSdkVersion="7"  />  
  17. </manifest>   


两个类如下:intent从TestBundle类发起,到Target类。

类1:TestBundle类:

[java] view plain copy
  1. import  android.app.Activity;    
  2. import  android.content.Intent;    
  3. import  android.os.Bundle;    
  4. import  android.view.View;  
  5. import  android.view.View.OnClickListener;  
  6. import  android.widget.Button;  
  7.   
  8. public   class  TestBundle  extends  Activity {    
  9.       
  10.     private  Button button1;  
  11.     private  OnClickListener cl;   
  12.     public   void  onCreate(Bundle savedInstanceState) {    
  13.         super .onCreate(savedInstanceState);    
  14.         setContentView(R.layout.main);  
  15.           
  16.         button1 = (Button) findViewById(R.id.button1);  
  17.         cl = new  OnClickListener(){  
  18.             @Override   
  19.             public   void  onClick(View arg0) {  
  20.                 // TODO Auto-generated method stub   
  21.                 Intent intent = new  Intent();    
  22.                 intent.setClass(TestBundle.this , Target. class );    
  23.                 Bundle mBundle = new  Bundle();    
  24.                 mBundle.putString("Data" "data from TestBundle" ); //压入数据     
  25.                 intent.putExtras(mBundle);    
  26.                 startActivity(intent);  
  27.             }  
  28.         };  
  29.         button1.setOnClickListener(cl);  
  30.     }  
  31. }    


类2: Target

[java] view plain copy
  1. import  android.app.Activity;    
  2. import  android.os.Bundle;    
  3.   
  4. public   class  Target  extends  Activity{    
  5.   
  6.     public   void  onCreate(Bundle savedInstanceState) {    
  7.           
  8.         super .onCreate(savedInstanceState);    
  9.         setContentView(R.layout.target);    
  10.         <span style="color:#ff6600;" >Bundle bundle = getIntent().getExtras();   </span>  //得到传过来的bundle   
  11.         String data = bundle.getString("Data" ); //读出数据     
  12.         setTitle(data);    
  13.   
  14.     }    
  15. }    


布局文件:

main.xml

[java] view plain copy
  1. <?xml version= "1.0"  encoding= "utf-8" ?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
  3.     android:orientation="vertical"   
  4.     android:layout_width="fill_parent"   
  5.     android:layout_height="fill_parent"   
  6.     >  
  7. <TextView    
  8.     android:layout_width="fill_parent"    
  9.     android:layout_height="wrap_content"    
  10.     android:text="@string/hello"   
  11.     />  
  12. <Button    
  13.     android:layout_width="fill_parent"    
  14.     android:layout_height="wrap_content"    
  15.     android:text="@string/button"   
  16.     android:id = "@+id/button1"   
  17.     />   
  18. </LinearLayout>  

 

target.xml

[java] view plain copy
  1. <?xml version= "1.0"  encoding= "utf-8" ?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   
  3.     android:orientation="vertical"   
  4.     android:layout_width="fill_parent"   
  5.     android:layout_height="fill_parent"   
  6.     >  
  7. <TextView    
  8.     android:layout_width="fill_parent"    
  9.     android:layout_height="wrap_content"    
  10.     android:text="@string/target"   
  11.     />  
  12. </LinearLayout>  

 

String.xml

[java] view plain copy
  1. <?xml version= "1.0"  encoding= "utf-8" ?>  
  2. <resources>  
  3.     <string name="hello" >Hello World, TestBundle!</string>  
  4.     <string name="app_name" >测试Bundle用法</string>  
  5.     <string name="button" >点击跳转</string>  
  6.     <string name="target" >来到target activity</string>  
  7. </resources>  


结果:

跳转结果:

分享到:
评论

相关推荐

    Android_Bundle介绍

    Android_Bundle 介绍 Android 中的 Bundle 是一种数据存储方式,用于将数据传递到另一个上下文中或保存或回复自己状态。Bundle 提供了一种灵活的方式来存储和传递数据,使得开发者可以轻松地在不同的 Activity 之间...

    Android中Bundle的小例子

    在Android应用开发中,`Bundle`是一个至关重要的组件,它被广泛用于在不同的组件之间(如Activity、Fragment或Service)传递数据。`Bundle`本质上是一个键值对存储容器,可以容纳各种基本数据类型以及Parcelable和...

    android bundle message

    在Android开发中,Bundle对象是传递数据的一种常见方式,它被广泛用于Activity、Fragment或Service之间的数据通信。标题“android bundle message”暗示我们将探讨如何在Android应用中使用Bundle来传递消息和数据。...

    Android 通过Intent使用Bundle传递对象详细介绍

    Android 通过Intent使用Bundle传递对象 Android开发中有时需要在应用中或进程间传递对象,下面详细介绍Intent使用Bundle传递对象的方法。 被传递的对象需要先实现序列化,而序列化对象有两种方式:java.io....

    Android学习笔记之bundle用法源码

    在Android开发中,Bundle是一个非常重要的工具类,用于在组件之间传递数据。它与Intent紧密关联,是Android应用中数据交换的重要桥梁。本篇学习笔记将深入探讨Bundle的使用方法和源码分析,帮助开发者更好地理解和...

    android activity bundle 通信示例

    本示例将深入探讨如何在Android活动中利用Bundle进行通信。 首先,理解Activity的基本概念至关重要。Activity是Android系统中的窗口,它负责与用户交互,显示UI元素,并处理用户的输入事件。一个应用程序可以包含多...

    androidbundle

    androidbundle

    安卓Android源码——Bundle.rar

    这个"安卓Android源码——Bundle.rar"压缩包可能包含了关于Bundle类的源代码,让我们深入探讨一下Bundle及其在Android系统中的应用。 Bundle类是Android SDK中的一个类,它继承自Parcelable接口,主要用来在...

    android bundle和activity之间交换数据

    对于复杂对象,如自定义类,Android提供了两种序列化方式:Parcelable和Serializable。Parcelable是更高效的方式,适合频繁的序列化操作,而Serializable接口则相对简单但效率较低。为了将自定义对象放入Bundle,你...

    Intent_Bundle_传参数

    Bundle,全称为“软件包”,在Android系统中扮演着数据容器的角色,它允许我们存储和恢复键值对数据。Bundle支持的数据类型包括基本类型(如int、float、String等)、集合类型(如ArrayList、HashMap等)以及...

    Android-一个Android工具类用于将对象保存在一个Bundle中没有任何样板代码

    这个"Android-一个Android工具类用于将对象保存在一个Bundle中没有任何样板代码"的项目,提供了一种简洁的方式,使得开发者无需编写大量的样板代码就能实现对象的序列化和存储。这种工具类通常会封装序列化过程,...

    最新android studio下载 android-studio-bundle-141.2288178-windows

    最新android studio 2015/10/12日更新 2015/10/12 android-studio-bundle-141.2288178-windows

    Android 数据传递(Intent、Bundle、Serializable、Parcelable等)

    在Android中,Serializable常用于Intent和Bundle的数据传递。序列化的过程是将对象转换为字节流,反序列化则相反。虽然使用简单,但序列化速度较慢,且生成的字节流占用空间大,不适合大量数据传输。 4. **...

    android-studio-bundle安装包(Windows)

    这是一个AndroidStudio2.2的安装包,里面集成了Android开发所有组件,不需要自己下载组件,是Windows环境下!

    android-页面跳转-Activity&Intent详解,Bundle类介绍说明.doc

    Android 页面跳转和 Intent 详解,Bundle 类介绍说明 Android 页面跳转是移动应用程序中的一种基本交互方式,通过 Intent 和 Activity 两个组件来实现。Intent 是 Android 中的一个核心组件,用于在不同的 Activity...

    android-studio-bundle-145.3537739-windows(1/22)

    android-studio-bundle-145.3537739-windows 目前来说android最新开发工具。

    Android Bundle对象的操作实例

    一个Android Bundle类的操作实例,new一个Bundle对象,将Bundle对象assign给Intent,调用Activity2,并将要传递的数据传入,加载activity2.xml,得Intent中的Bundle对象,取得Bundle对象中的数据,以findViewById()取得...

    Android Bundle对象实现体重仪.rar

    Android 基于Bundle对象编写实现一个标准的体重测量仪,其实就是一个Activity跳转页面然后接收值做处理的例子,代码利用网友写的android可视化GUI布局拖拉工具DroidDraw布局了界面。  有一点需要大家注意的是,...

    Android应用源码之Bundle_Bundle.zip

    在Android应用开发中,`Bundle`是一个至关重要的类,它被广泛用于在Activity、Fragment以及Intent之间传递数据。`Bundle`本质上是一个可序列化的Key-Value存储容器,它提供了多种方法来存储各种类型的数据,如基本...

    android-studio-bundle-145.3537739-windows(19/22)

    android-studio-bundle-145.3537739-windows(19/22)

Global site tag (gtag.js) - Google Analytics