无法在android

时间:2015-05-14 07:45:19

标签: android json listview icons

目前,我有一个完整的应用程序,它使用默认的ListAdapter在listview中显示json数据,但是,我想添加一个imageview并通过web设置json数据中的字符串数据。

我从网上获得的数据就像{name = John,  title =我的书,date_ = 2014/03/14}。 如何设置或制作自定义适配器以显示arrList = new ArrayList<HashMap<String, String>>();的json,还显示前3个项目的图像?因为,我对此很新,我需要一些帮助。

if(!arrList.isEmpty()){

                    ListAdapter adapter = new SimpleAdapter(JKujiListActivity.this, arrList,
                            R.layout.customlist, new String[] {"name", "title", "date"},
                            new int[] {R.id.name,R.id.dai, R.id.day});

                    mySpinner.setAdapter(adapter);

                }

1 个答案:

答案 0 :(得分:1)

使用标准适配器无法做到这一点。您应该在解释here时创建自己的适配器类。