最简单的方法是遍历的所有
HashMaps
ArrayList,然后遍历的所有键
Map:
TextView view = (TextView) view.findViewById(R.id.view);for (HashMap<String, String> map : data) for (Entry<String, String> entry : map.entrySet()) view.append(entry.getKey() + " => " + entry.getValue());



