`
潇儒瀚
  • 浏览: 39494 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Android Bundle类

阅读更多

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类

  1. Bundle mBundle = new Bundle();   

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

  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);  

完整代码如下:

    <?xml version="1.0" encoding="utf-8"?>  
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
          package="com.tencent.test"  
          android:versionCode="1"  
          android:versionName="1.0">  
        <application android:icon="@drawable/icon" android:label="@string/app_name">  
            <activity android:name=".TestBundle"  
                      android:label="@string/app_name">  
                <intent-filter>  
                    <action android:name="android.intent.action.MAIN" />  
                    <category android:name="android.intent.category.LAUNCHER" />  
                </intent-filter>  
            </activity>  
        <activity android:name=".Target"></activity>  
        </application>  
        <uses-sdk android:minSdkVersion="7" />  
    </manifest>   

 

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

 

类1:TestBundle类:

    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 TestBundle extends Activity {    
          
        private Button button1;  
        private OnClickListener cl;   
        public void onCreate(Bundle savedInstanceState) {    
            super.onCreate(savedInstanceState);    
            setContentView(R.layout.main);  
              
            button1 = (Button) findViewById(R.id.button1);  
            cl = new OnClickListener(){  
                @Override  
                public void onClick(View arg0) {  
                    // TODO Auto-generated method stub   
                    Intent intent = new Intent();    
                    intent.setClass(TestBundle.this, Target.class);    
                    Bundle mBundle = new Bundle();    
                    mBundle.putString("Data", "data from TestBundle");//压入数据     
                    intent.putExtras(mBundle);    
                    startActivity(intent);  
                }  
            };  
            button1.setOnClickListener(cl);  
        }  
    }    

 

类2: Target

    import android.app.Activity;    
    import android.os.Bundle;    
      
    public class Target extends Activity{    
      
        public void onCreate(Bundle savedInstanceState) {    
              
            super.onCreate(savedInstanceState);    
            setContentView(R.layout.target);    
            <span style="color:#ff6600;">Bundle bundle = getIntent().getExtras();   </span> //得到传过来的bundle   
            String data = bundle.getString("Data");//读出数据     
            setTitle(data);    
      
        }    
    }    

 

布局文件:

 

main.xml

    <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
        android:orientation="vertical"  
        android:layout_width="fill_parent"  
        android:layout_height="fill_parent"  
        >  
    <TextView    
        android:layout_width="fill_parent"   
        android:layout_height="wrap_content"   
        android:text="@string/hello"  
        />  
    <Button    
        android:layout_width="fill_parent"   
        android:layout_height="wrap_content"   
        android:text="@string/button"  
        android:id = "@+id/button1"  
        />   
    </LinearLayout>  

 

target.xml

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:orientation="vertical"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    >  
<TextView    
    android:layout_width="fill_parent"   
    android:layout_height="wrap_content"   
    android:text="@string/target"  
    />  
</LinearLayout

 

String.xml

    <?xml version="1.0" encoding="utf-8"?>  
    <resources>  
        <string name="hello">Hello World, TestBundle!</string>  
        <string name="app_name">测试Bundle用法</string>  
        <string name="button">点击跳转</string>  
        <string name="target">来到target activity</string>  
    </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