简单的在Activity间传数据,我们一般有两种方式:
1.直接用Intent的putExtra(), getStringExtra();
2.先new一个Bundle对象,用Bundle的putExtra().
那么这两种方式有什么不一样呢?
我们先看一下Intent对象相应函数的源代码:
public Intent putExtra(String name, String value) { if (mExtras == null) { mExtras = new Bundle(); } mExtras.putString(name, value); return this; }
public String getStringExtra(String name) { return mExtras == null ? null : mExtras.getString(name); }
可以知道,Intent的相关操作的实现是基于Bundle的,Bundle操作数据相对于Intent有哪些优势呢?
举个例子,如果我要从A界面跳转到B界面和C界面,那么我要写写两个Intent,如果传的数据相同,我两个Intent都要添加,但是如果我用Bundle,直接一次性包装就可以了。
再有,如果A界面要传值给B界面,再从B界面传值到C界面,你可以想象用Intent是多么的麻烦了,但是用Bundle就很简洁,而且还可以在B界面中添加新的信息。
其实在Android代码中这样的情况蛮多的,比如Intent的setClass和ComponentName这两种方式又有什么区别呢?请看setClass源代码:
public Intent(Context packageContext, Class<?> cls) { mComponent = new ComponentName(packageContext, cls); }
public Intent setClass(Context packageContext, Class<?> cls) { mComponent = new ComponentName(packageContext, cls); return this; }
当然如果传的数据非常之多而且很复杂,用这两种方式显然是不适合的,这时候我们可以使用可序列化的结构类,实例代码如下:
Parcelable类。最主要的类,也就是我们要传送的对象的类,需要实现Parcelable接口。
package com.zeph.android.Parcelable; import android.os.Parcel; import android.os.Parcelable; public class BenParcelable implements Parcelable { public String name; public int age; public String profession; public BenParcelable(String name, int age, String profession) { this.name = name; this.age = age; this.profession = profession; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getprofession() { return profession; } public void setprofession(String profession) { this.profession = profession; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel parcel, int flag) { parcel.writeString(name); parcel.writeInt(age); parcel.writeString(profession); } public static final Creator<BenParcelable> CREATOR = new Creator<BenParcelable>() { public BenParcelable createFromParcel(Parcel in) { return new BenParcelable(in); } public BenParcelable[] newArray(int size) { return new BenParcelable[size]; } }; private BenParcelable(Parcel in) { name = in.readString(); age = in.readInt(); profession = in.readString(); } }
ParcelableActivity类,传递对象的Activity类。
package com.zeph.android.Parcelable; 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 ParcelableActivity extends Activity { private Button myButton; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); myButton = (Button) findViewById(R.id.myButton); myButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { BenParcelable benParcelable = new BenParcelable("BenZeph", 23, "Java/Android Engineer"); Intent intent = new Intent(); intent.setClass(getApplicationContext(), GetParcelableActivity.class); Bundle bundle = new Bundle(); bundle.putParcelable("Ben", benParcelable); intent.putExtras(bundle); startActivity(intent); } }); } }
GetParcelableActivity类,接收序列化对象的Activity类。
package com.zeph.android.Parcelable; import android.app.Activity; import android.os.Bundle; public class GetParcelableActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); BenParcelable parcelable = getIntent().getParcelableExtra("Ben"); System.out.println(parcelable.getName()); System.out.println(parcelable.getAge()); System.out.println(parcelable.getprofession()); } }
相关推荐
在创建Intent后,我们可以通过`putExtra()`方法为Intent添加键值对,但当数据类型复杂时,可先创建一个Bundle对象,然后用`putExtras(Bundle)`方法将Bundle添加到Intent中。例如: ```java Bundle bundle = new ...
intent.putExtra("bundleKey", bundle); ``` 接收: ```java Bundle bundle = getIntent().getBundleExtra("bundleKey"); int value1 = bundle.getInt("key1"); MyParcelable myParcelable = bundle.getParcelable...
在Activity之间传递数据,主要通过Intent的putExtra()和getExtra()方法。例如,我们可以将基本数据类型(如字符串、整型、浮点型等)或Parcelable、Serializable接口实现的对象放入Intent中: ```java Intent...
为了更好地理解这个过程,你可以查看源代码,学习如何在实际应用中使用Intent和Bundle。这将有助于提升你在Android开发中的能力,特别是在处理组件间通信和数据传递方面。此外,了解如何序列化和反序列化Parcelable...
通过调用`Intent.putExtra()`方法添加这些参数,例如: ```java intent.putExtra("crop", "true"); intent.putExtra("aspectX", 1); intent.putExtra("aspectY", 1); intent.putExtra("outputX", 256); intent...
本文将深入探讨“Android Intent”在页面跳转和数据传递中的应用,结合“Chapter06_Intent_01”示例进行详细解析。 一、Intent的基本概念 Intent是一个消息对象,它表达了应用的意图,告诉系统想要执行的操作。...
对于简单的数据类型,如字符串(String)、整型(int)、浮点型(float)等,可以直接通过Intent的putExtra()方法添加数据,然后在接收方通过getExtra()获取。例如: ```java Intent intent = new Intent(context, ...
在Android应用开发中,Activity是...理解并熟练运用Intent、Bundle和ActivityResult机制,可以帮助开发者构建更高效、流畅的应用。在实际开发中,根据项目需求灵活选择合适的数据传递方式,以实现最佳性能和用户体验。
intent.putExtra("bundleKey", bundle); ``` 3. **Bundle的序列化** - `Bundle`实现了`Parcelable`接口,这意味着它可以被序列化和反序列化。`Parcelable`比`Serializable`更高效,因此它是Android推荐的数据...
intent.putExtra("bundleKey", bundle); ``` - 接收端: ```java Bundle bundle = getIntent().getBundleExtra("bundleKey"); String value1 = bundle.getString("key1"); int value2 = bundle.getInt("key2...
在Android开发领域,Android ...理解并熟练运用Intent和Bundle,能有效提升应用的用户体验和功能实现。同时,进行充分的测试也是确保应用质量的关键步骤。通过不断实践和学习,你将能在Android开发领域更上一层楼。
本教程将详细讲解如何在`Activity`之间传递数据,包括使用`Intent`和`Bundle`来实现实现简单功能,这对于初学者来说非常实用。 ### 1. `Intent`的使用 `Intent`是安卓系统中的一个核心组件,它用于表示应用程序中...
在`onClick()`方法中,我们创建了一个Intent实例,并使用`putExtra()`方法传递了一个字符串参数`param_str`,值为`"Info from Activity01"`。然后,`setClass()`方法指定了我们想要启动的Activity——`OtherActivity...
Intent的`putExtras(Bundle extras)`和`getExtras()`方法可以方便地处理Bundle。 9. **FLAG传递方式** 可以使用不同的Flag来控制Intent的行为,如`FLAG_ACTIVITY_NEW_TASK`用于在新的任务栈中启动Activity,`FLAG_...
intent.putExtra("bundleKey", bundle); startActivity(intent); // 接收Activity Intent intent = getIntent(); Bundle bundle = intent.getBundleExtra("bundleKey"); String value = bundle.getString("key"); `...
intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString()); // 其他设置 startActivity(intent); ``` **解析**:与发送短信类似,但需构建包含多媒体内容的URI,并通过`Intent`传递给系统,默认...
intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString()); intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode); intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_...
intent.putExtra("bundleKey", bundle); startActivity(intent); // 在目标Activity中 Bundle bundle = getIntent().getBundleExtra("bundleKey"); int value1 = bundle.getInt("key1"); String value2 = bundle....
正巧小伙伴问Android传值Intent和Bundle区别,特此总结下: Intent与Bundle在传值上的区别 首先从使用上: Intent方式: 假设需要将数据从页面A传递到B,然后再传递到C。 A页面中: Intent intent=new Intent...
Bundle bundle = intent.getExtras(); String value = bundle.getString("key"); ``` **3. Parcelable接口** 对于复杂的数据结构,如自定义对象,可以实现Parcelable接口进行序列化。这样,对象可以直接在Intent中...