今天发现自己连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类

BundlemBundle=newBundle();

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

mBundle.putString("Data","datafromTestBundle");

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

Intentintent=newIntent();intent.setClass(TestBundle.this,Target.class);intent.putExtras(mBundle);

完整代码如下:

android mainfest.xml如下:

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

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

类1:TestBundle类:

importandroid.app.Activity;importandroid.content.Intent;importandroid.os.Bundle;importandroid.view.View;importandroid.view.View.OnClickListener;importandroid.widget.Button;publicclassTestBundleextendsActivity{privateButtonbutton1;privateOnClickListenercl;publicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.main);button1=(Button)findViewById(R.id.button1);cl=newOnClickListener(){@OverridepublicvoidonClick(Viewarg0){//TODOAuto-generatedmethodstubIntentintent=newIntent();intent.setClass(TestBundle.this,Target.class);BundlemBundle=newBundle();mBundle.putString("Data","datafromTestBundle");//压入数据intent.putExtras(mBundle);startActivity(intent);}};button1.setOnClickListener(cl);}}

类2: Target

importandroid.app.Activity;importandroid.os.Bundle;publicclassTargetextendsActivity{publicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.target);Bundlebundle=getIntent().getExtras();//得到传过来的bundleStringdata=bundle.getString("Data");//读出数据setTitle(data);}}

布局文件:

main.xml

<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><TextViewandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/hello"/><Buttonandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/button"android:id="@+id/button1"/></LinearLayout>

target.xml

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

String.xml

<?xmlversion="1.0"encoding="utf-8"?><resources><stringname="hello">HelloWorld,TestBundle!</string><stringname="app_name">测试Bundle用法</string><stringname="button">点击跳转</string><stringname="target">来到targetactivity</string></resources>

结果:


跳转结果:


更多相关文章

  1. FastJson使用详解Demo
  2. Android(安卓)EditText 中hint文字大小以及与输入文字颜色保存一
  3. Android之SharedPreferencesUtils,支持对象,List
  4. MediaPlayer+Stagefright架构(音频)图解
  5. Android(安卓)开发Tips 之 Bmob操作
  6. Android(安卓)app启动流程(Activity启动过程)【基于API26】
  7. Android用http协议上传文件
  8. Android(安卓)为Notification加上一个进度条
  9. 【Android】九宫格的实现

随机推荐

  1. Android的硬件加速
  2. Android(安卓)源码查看
  3. android:launchMode="singleTask" 与 onN
  4. Android(安卓)消息处理机制1(从源码分析)
  5. Android设置透明、半透明等效果
  6. Android(安卓)studio 插件安装
  7. Mac配置Android环境变量
  8. android avd配置路径
  9. Android参数传递总结
  10. android TextView的字体颜色设置的多种方