如何从List <list <hashmap <string,string =“”>&gt;&gt;获取值

时间:2017-01-01 18:40:38

标签: android

我想将存储在哈希映射中的Latlong值作为键值对。

string

'routes'保存值。我想得到那些价值

structure

1 个答案:

答案 0 :(得分:3)

如果你把它分解成部分,你就明白了:

List<HashMap<String, String>> route = routes.get(0);
HashMap<String, String> position = route.get(0);
String latitude = position.get("lat");
String longitude = position.get("lng");