Android工程师第二门课,GridView数据添加超过指定长度两倍
请教: 使用getData()方法执行 for循环往List添加数据,发现添加了两倍的数据 以下是本人for循环的代码: for (int i = 0; i < iconName.length; i++) { Map map=new HashMap(); map.put("image",R.drawable.ic_launcher); map.put("text", iconName[i]); dataList.add(map); }