我遇到了一个奇怪的问题,我没有找到任何解释,我将在代码中评论如下:
final List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Map<String,Object> map = new HashMap<String,Object>();
//for example payss ArrayList contains `A,B,C,D,E,F,G`
for (int i=0;i<payss.size();i++){
Bitmap contact_pic=pays_drapeaux.get(i);
drawable=new BitmapDrawable(contact_pic);
map.put("pays", payss.get(i).getNom());
Log.i("PAYS",payss.get(i).getNom()); //here it shows correctly the values one by one
map.put("drapeau",drawable);
list.add(map);
}
//here want to show what the list contains after setting it above
for (int i=0;i<list.size();i++){
Log.i("VALUES",list.get(i).values().toString()); //but here it shows G,G,G,G,G,G,G
}
正如你所看到的,我最后有一个list
变量,它的所有值都是最近的payss
值(G)。知道为什么我会面临这个问题。谢谢你的帮忙。