Android Bundle类
今天发现自己连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();
- 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(){
- @Override
- publicvoidonClick(Viewarg0){
- //TODOAuto-generatedmethodstub
- Intentintent=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);
- <spanstyle="color:#ff6600;">Bundlebundle=getIntent().getExtras();</span>//得到传过来的bundle
- Stringdata=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"
- >
- <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>
- <?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"
- >
- <TextView
- android: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>
结果:
跳转结果:
今天发现自己连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();
- 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(){
- @Override
- publicvoidonClick(Viewarg0){
- //TODOAuto-generatedmethodstub
- Intentintent=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);
- <spanstyle="color:#ff6600;">Bundlebundle=getIntent().getExtras();</span>//得到传过来的bundle
- Stringdata=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"
- >
- <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>
- <?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"
- >
- <TextView
- android: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>
结果:
跳转结果: