目前,我有一个完整的应用程序,它使用默认的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);
}