
本教程详细介绍了如何在Android应用中,利用Gson库在不同Activity之间高效传递`ArrayList`。文章首先阐述了Intent直接传递复杂对象时面临的挑战,随后深入讲解了Gson的工作原理和具体实现步骤,包括添加依赖、数据类的准备、发送Activity中的序列化以及接收Activity中的反序列化,并提供了完整的示例代码和注意事项,旨在帮助开发者掌握一种简洁可靠的复杂数据传递方案。
在Android应用开发中,Activity之间的数据传递是常见的需求。对于基本数据类型,Intent的putExtra()方法可以直接处理。然而,当需要传递复杂数据结构,如自定义对象的ArrayList时,直接使用Intent会遇到一些限制。本文将详细介绍如何利用流行的Gson库,以一种高效且易于维护的方式,在不同Activity间传递ArrayList<自定义对象>。
Intent在传递非基本数据类型时,通常要求对象实现Serializable或Parcelable接口。Serializable是Java标准接口,实现简单但效率较低,因为它使用反射进行序列化。Parcelable是Android特有的接口,性能更优,但实现起来相对复杂,需要手动写入和读取Parcel数据。
对于ArrayList<自定义对象>这种集合类型,如果自定义对象本身实现了Serializable或Parcelable,Intent可以传递ArrayList。然而,为了避免为每个自定义类都手动实现这些接口,特别是当类结构复杂或数量众多时,寻找一种更通用的序列化方案变得尤为重要。
Gson是由Google提供的一个Java库,用于在Java对象和JSON数据之间进行序列化和反序列化。它的主要优势在于使用简单、性能良好,并且能够处理复杂的嵌套对象和集合类型,而无需自定义类实现特定的序列化接口。
Gson的工作原理是将Java对象转换为JSON格式的字符串,或者将JSON字符串转换回Java对象。这种方式非常适合在Activity之间传递数据,因为JSON字符串可以作为普通的String类型通过Intent进行传递。
以下是使用Gson在Activity之间传递ArrayList<自定义对象>的具体步骤。
首先,在您的Android项目的app/build.gradle文件中添加Gson库的依赖。
dependencies {
implementation 'com.google.code.gson:gson:2.10.1' // 使用最新稳定版本
}添加后,同步Gradle项目。
确保您的自定义数据类(例如ListeJoueurs)是标准的Java类,包含您需要传递的字段和相应的构造函数。对于Gson而言,您无需让此类实现Serializable或Parcelable接口。
public class ListeJoueurs {
String Nom;
String Prenom;
Long Licence;
String Cat;
String Select;
String dteN;
int imageClick;
// 构造函数
public ListeJoueurs(String Nom, String Prenom, Long Licence, String Cat, String Select, String dteN, int imageClick) {
this.Nom = Nom;
this.Prenom = Prenom;
this.Licence = Licence;
this.Cat = Cat;
this.Select = Select;
this.dteN = dteN;
this.imageClick = imageClick;
}
// 可以添加getter和setter方法,Gson在反序列化时通常会使用无参构造函数和setter,
// 但如果只有带参构造函数且字段名与JSON匹配,Gson也能良好工作。
// 为了更好的实践,建议提供无参构造函数和getter/setter。
public String getNom() { return Nom; }
public void setNom(String nom) { Nom = nom; }
// ... 其他字段的getter/setter
@Override
public String toString() {
return "ListeJoueurs{" +
"Nom='" + Nom + '\'' +
", Prenom='" + Prenom + '\'' +
", Licence=" + Licence +
", Cat='" + Cat + '\'' +
", Select='" + Select + '\'' +
", dteN='" + dteN + '\'' +
", imageClick=" + imageClick +
'}';
}
}在发送数据的Activity中,您需要将ArrayList<ListeJoueurs>转换为JSON字符串,然后通过Intent的putExtra()方法传递。
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.google.gson.Gson;
import java.util.ArrayList;
public class SenderActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sender);
Button sendButton = findViewById(R.id.send_data_button);
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 1. 创建 ArrayList<ListeJoueurs>
ArrayList<ListeJoueurs> joueursList = new ArrayList<>();
joueursList.add(new ListeJoueurs("张", "三", 1001L, "青年", "是", "2000-01-01", 0));
joueursList.add(new ListeJouurs("李", "四", 1002L, "成年", "否", "1990-05-15", 1));
joueursList.add(new ListeJoueurs("王", "五", 1003L, "老年", "是", "1960-11-20", 0));
// 2. 初始化 Gson 对象
Gson gson = new Gson();
// 3. 将 ArrayList 转换为 JSON 字符串
String jsonJoueursList = gson.toJson(joueursList);
// 4. 创建 Intent 并将 JSON 字符串放入其中
Intent intent = new Intent(SenderActivity.this, ReceiverActivity.class);
intent.putExtra("JOUER_LIST_KEY", jsonJoueursList); // "JOUER_LIST_KEY" 是自定义的键
// 5. 启动目标 Activity
startActivity(intent);
}
});
}
}在接收数据的Activity中,您需要从Intent中获取JSON字符串,然后使用Gson将其反序列化回ArrayList<ListeJoueurs>。
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken; // 引入 TypeToken
import java.lang.reflect.Type; // 引入 Type
import java.util.ArrayList;
public class ReceiverActivity extends AppCompatActivity {
private TextView receivedDataTextView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_receiver);
receivedDataTextView = findViewById(R.id.received_data_text_view);
// 1. 从 Intent 中获取 JSON 字符串
String jsonJoueursList = getIntent().getStringExtra("JOUER_LIST_KEY");
if (jsonJoueursList != null && !jsonJoueursList.isEmpty()) {
// 2. 初始化 Gson 对象
Gson gson = new Gson();
// 3. 定义 ArrayList<ListeJoueurs> 的 Type
// 这是反序列化泛型集合的关键步骤
Type listType = new TypeToken<ArrayList<ListeJoueurs>>(){}.getType();
// 4. 将 JSON 字符串反序列化回 ArrayList<ListeJoueurs>
ArrayList<ListeJoueurs> receivedList = gson.fromJson(jsonJoueursList, listType);
// 5. 处理接收到的数据
if (receivedList != null && !receivedList.isEmpty()) {
StringBuilder sb = new StringBuilder("接收到的玩家列表:\n");
for (ListeJoueurs joueur : receivedList) {
sb.append(joueur.toString()).append("\n");
}
receivedDataTextView.setText(sb.toString());
} else {
receivedDataTextView.setText("接收到的列表为空或解析失败。");
}
} else {
receivedDataTextView.setText("未接收到玩家列表数据。");
}
}
}为了完整演示,我们假设有以下布局文件:
activity_sender.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">
<Button
android:id="@+id/send_data_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="发送玩家列表到另一个Activity" />
</LinearLayout>activity_receiver.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/received_data_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="等待接收数据..." />
</LinearLayout>性能考量:
错误处理:
数据类设计:
键值管理:
通过Gson库,Android开发者可以非常方便地在Activity之间传递复杂的自定义对象列表。这种方法避免了手动实现Serializable或Parcelable的繁琐,使得数据传递逻辑更加简洁和易于理解。在大多数场景下,Gson提供的JSON序列化方案是处理Activity间复杂数据传递的有效且推荐的方式。然而,在面对极端性能要求或超大数据集时,开发者也应考虑其他替代方案。
以上就是Android Activity间传递自定义对象列表:使用Gson库实现的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号