本文介绍了列表视图有关适配器,用于创建一个HashMap,为什么位图类型进口不能显示在列表视图图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

   list_data = list_data_add("111","222",icon);

    adapter = new SimpleAdapter(
            this, list_data, R.layout.list_item_detail,
            new String[]{"title","desc","icon"},
            new int[]{R.id.title, R.id.desc, R.id.icon}
    );
    listview.setAdapter(adapter);

private List<Map<String, Object>> list_data_add(String title, String desc, Bitmap icon) {
    List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();

        Map<String, Object> map;
        map = new HashMap<String, Object>();

        map.put("title", title);
        map.put("desc", desc);
        map.put("icon", icon);
        list.add(map);

    return list;
} 

您好,图标是位图式,但这种方式不显示列表视图中的任何图像,但如果改变图标为int类型,并设置图标= R.drawable.icon_folder 和进口list_data_add创建一个HashMap,它可以显示一个列表视图绘制的Andr​​oid资源图片

the icon is Bitmap type, but this way it doesn't show any image in listview, but if change icon to int type, and set icon = R.drawable.icon_folder , and import to list_data_add to create a hashmap, it could show a android drawable resource image in listview.

所以,任何人都可以帮我解决呢? TKS!

so, could anyone can help me to solve this? tks!

推荐答案

确定我得到它, SimpleAdapter 不accpect 位图,创建一个 baseadapter 那么它的罚款。

ok i got it, SimpleAdapter does not accpect Bitmap, create a baseadapter then it's fine.

这篇关于列表视图有关适配器,用于创建一个HashMap,为什么位图类型进口不能显示在列表视图图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 09:24