通过意图传递ArrayList


82

我试图使用意图将arrayList传递给另一个活动。这是第一个活动中的代码。

case R.id.editButton:
        Toast.makeText(this, "edit was clicked", Toast.LENGTH_LONG).show();
        Intent intent = new Intent(this, editList.class);
        intent.putStringArrayListExtra("stock_list", stock_list);
        startActivity(intent);
        break;

这是我尝试在第二个活动中检索列表的地方。这有什么问题吗?

Intent i = new Intent(); //This should be getIntent();
    stock_list = new ArrayList<String>();

    stock_list = i.getStringArrayListExtra("stock_list");

Answers:


105

根据您的接收意图,您需要执行以下操作:

Intent i = getIntent();  
stock_list = i.getStringArrayListExtra("stock_list");

您拥有它的方式刚刚创建了一个没有任何额外内容的新的空意图。

如果您只有一个额外的配件,可以将其浓缩为:

stock_list = getIntent().getStringArrayListExtra("stock_list");

20

我通过以String形式传递ArrayList来完成此操作 。

  1. 添加compile 'com.google.code.gson:gson:2.2.4'依赖的build.gradle

  2. 点击同步项目与文件摇篮

Cars.java

public class Cars {
    public String id, name;
}

FirstActivity.java

当你通过 的ArrayList

List<Cars> cars= new ArrayList<Cars>();
cars.add(getCarModel("1", "A"));
cars.add(getCarModel("2", "B"));
cars.add(getCarModel("3", "C"));
cars.add(getCarModel("4", "D"));

Gson gson = new Gson();

String jsonCars = gson.toJson(cars);

Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.putExtra("list_as_string", jsonCars);
startActivity(intent);

通过功能获取CarsModel

private Cars getCarModel(String id, String name){
       Cars cars = new Cars();
       cars.id = id;
       cars.name = name;
    return cars;
 }

SecondActivity.java

您必须导入 java.lang.reflect.Type;

onCreate()上检索ArrayList

String carListAsString = getIntent().getStringExtra("list_as_string");

Gson gson = new Gson();
Type type = new TypeToken<List<Cars>>(){}.getType();
List<Cars> carsList = gson.fromJson(carListAsString, type);
for (Cars cars : carsList){
   Log.i("Car Data", cars.id+"-"+cars.name);
}

希望这可以节省时间,我已经保存了。

完成了


3
或者,您可以简单地让您的Cars模型类实现Parcelable接口并简单地进行intent.putParcelableArrayListExtra(“ parecelable_list”,carsList); 其中carsList是ArrayList <Cars>的实例
Nouman Hanif

1
Downvoter应该注意添加评论作为理由。
埃伦·帕特尔

3
如果已经存在或存在intent.putStringArrayListExtra,我为什么要使用Gson 。如果我使用日食怎么办?我必须下载并添加Gson库吗?intent.getStringArrayListExtragetSerializableExtra
Tushar Monirul

我的2位...出于这个原因,您不能对此表示反对,但您应该建议“打包而不是序列化”,因为它已经被多次证明了-对于Android,它效率更高并且执行序列化。
user3833732 '19

13

如果您对使用通用数组列表而不是特定类型

例如:

private ArrayList<Model> aListModel = new ArrayList<Model>();

这里, 模型=类

接收意向:

aListModel = (ArrayList<Model>) getIntent().getSerializableExtra(KEY);

必须记住:

这里的Model-class必须像这样实现: ModelClass实现Serializable


通常就像为startActivityForResult发送意图: Intent intent = new Intent(MainActivity.this, SecondActivity.class); startActivityForResult(intent, aListModel);
Dhruv Raval

5

假设您需要将当前活动的下一个类的数组列表传递到下一个活动//数组列表中的对象的类//记住要从Serializable接口实现该类// Serializable意味着它将对象转换为字节流并提供帮助转移那个物体

public class Question implements Serializable {
... 
... 
...
}

在您当前的活动中,您可能有一个ArrayList,如下所示

ArrayList<Question> qsList = new ArrayList<>();
qsList.add(new Question(1));
qsList.add(new Question(2));
qsList.add(new Question(3));

// intialize Bundle instance
Bundle b = new Bundle();
// putting questions list into the bundle .. as key value pair.
// so you can retrieve the arrayList with this key
b.putSerializable("questions", (Serializable) qsList);
Intent i = new Intent(CurrentActivity.this, NextActivity.class);
i.putExtras(b);
startActivity(i);

为了在下一个活动中获得arraylist

//get the bundle
Bundle b = getIntent().getExtras();
//getting the arraylist from the key
ArrayList<Question> q = (ArrayList<Question>) b.getSerializable("questions");

2
//arraylist/Pojo you can Pass using bundle  like this 
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
Bundle args = new Bundle();
                        args.putSerializable("imageSliders",(Serializable)allStoriesPojo.getImageSliderPojos());
                        intent.putExtra("BUNDLE",args);
 startActivity(intent); 


Get SecondActivity like this
  Intent intent = getIntent();
        Bundle args = intent.getBundleExtra("BUNDLE");
String filter = bundle.getString("imageSliders");

//Happy coding

2
    public class StructMain implements Serializable {
    public  int id;
    public String name;
    public String lastName;
}

这是我的项目。实现Serializable并创建ArrayList

ArrayList<StructMain> items =new ArrayList<>();

并放在捆绑中

Bundle bundle=new Bundle();
bundle.putSerializable("test",items);

并创建一个新的将Bundle放入Intent的Intent

Intent intent=new Intent(ActivityOne.this,ActivityTwo.class);
intent.putExtras(bundle);
startActivity(intent);

对于接收包插入此代码

Bundle bundle = getIntent().getExtras();
ArrayList<StructMain> item = (ArrayList<StructMain>) bundle.getSerializable("test");
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.