gpt4 book ai didi

android - 如何将 ArrayList>从一个 Activity 传递到另一个 Activity

转载 作者:IT老高 更新时间:2023-10-28 23:38:10 24 4
gpt4 key购买 nike

如何将数组列表从一个 Activity 传递到另一个我的数组列表如下所示

ArrayList<HashMap<String, String>>

最佳答案

使用 putExtra(String, Serializable) 在 Intent 和 getSerializableExtra(String) 中传递值方法来检索数据。

传递 ArrayList<HashMap<String, String>>从 Activity A 到 Activity B

Intent intent = new Intent(this, B.class);
HashMap<String, String> hm = new HashMap<String, String>();
hm.put("sunil", "sahoo");
ArrayList<HashMap<String, String>> arl = new ArrayList<HashMap<String, String>>();
arl.add(hm);
intent.putExtra("arraylist", arl);
startActivityForResult(intent, 500);

在 Activity B 中检索数据

ArrayList<HashMap<String, String>> arl = (ArrayList<HashMap<String, String>>) getIntent().getSerializableExtra("arraylist");
System.out.println("...serialized data.."+arl);

关于android - 如何将 ArrayList<HashMap<String, String>>从一个 Activity 传递到另一个 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6355787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com