问题描述
- android开发中listview添加图片
-
map1.put("image",R.drawable.jiantou);
我在listview中添加图像时,引用图像的地址,如上所示,但提示错误The method put(String, String) in the type HashMap is not applicable for the
arguments (String, int)
但我看别人的代码都可以直接引用图像地址的,请大神帮忙解决一下,谢啦!!
解决方案
Map<String,Object> map =new HashMap<String,Object>();
你定义的map的第二个参数应该改成Object,你现在的应该是String
时间: 2024-11-03 19:01:29