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());
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)