0

我在我的主类中定义了一个列表,我正在从 KSoap 响应中加载数据:

List<HashMap<String, String>> POIs= new ArrayList<HashMap<String, String>>();

我使用以下代码将条目添加到列表中:

for (int i = 0; i < response1.getPropertyCount(); i++) {            
  SoapObject response2 = (SoapObject) response1.getProperty(i);
  HashMap<String, String> map = new HashMap<String, String>();                  
  map.put("ID",response2.getProperty("CID").toString());
  map.put("Distance",response2.getProperty("distance").toString());
  map.put("SubLocality",response2.getProperty("SubLocality1").toString());
  POIs.add(map);
}

我想知道如何将兴趣点列表放在一个意图上?

4

2 回答 2

1

我使用 Bundle.putSerializable 传递列表,因为它不大(只有大约 10 个项目)。

于 2012-06-11T04:07:40.287 回答
1

List使用主类的对象访问您的。就那么简单。

于 2012-06-09T09:35:22.650 回答