Cursor cursor=db.rawQuery("select*from course",null); if(cursor.getCount()>0){ List<Map<String,Object>> mapList=new ArrayList<Map<String,Object>>(); cursor.moveToFirst(); while(cursor.moveToNext()){ Map<String,Object> listitem=new HashMap<String,Object>(); listitem.put("cnumber",cursor.getInt(1)); listitem.put("cname",cursor.getString(2)); listitem.put("cclass",cursor.getString(3)); listitem.put("cteacher",cursor.getString(4)); listitem.put("cterm,",cursor.getString(5)); String cimage=cursor.getString(6); imageView.setImageResource(Integer.parseInt(cimage)); mapList.add(listitem); } SimpleAdapter adapter=new SimpleAdapter(MainActivity3.this,mapList,R.layout.item,new String[]{"cname","cclass","cteacher","cteram"},new int[]{R.id.textView11,R.id.textView12,R.id.textView13,R.id.textView14}); listView.setAdapter(adapter);现在cursor有一条数据,输入这段代码listview什么都不显示
时间: 2024-01-15 08:05:11 浏览: 156
根据你提供的代码,我发现可能出现了以下几个问题:
1. 在 while 循环中,将数据存储到 mapList 中后,没有调用 adapter.notifyDataSetChanged() 方法来通知 ListView 更新数据。可以在 while 循环外面调用该方法,例如:
```
while (cursor.moveToNext()) {
// 将数据存储到 mapList 中
// ...
}
adapter.notifyDataSetChanged();
```
2. 在将图片设置到 ImageView 中时,使用了 Integer.parseInt(cimage) 方法,但是 cimage 可能不是一个有效的整数字符串,导致出现异常。可以使用其他方式来设置图片,例如:
```
// 从本地文件或网络下载图片,然后通过以下方法设置到 ImageView 中
// imageView.setImageBitmap(bitmap);
```
3. 在 SimpleAdapter 的构造方法中,指定了要显示的数据项名称为 "cteram",但是实际上应该是 "cterm",可能是因为笔误导致的。可以修改为以下代码:
```
SimpleAdapter adapter = new SimpleAdapter(
MainActivity3.this,
mapList,
R.layout.item,
new String[]{"cname", "cclass", "cteacher", "cterm"}, // 正确的数据项名称
new int[]{R.id.textView11, R.id.textView12, R.id.textView13, R.id.textView14}
);
```
希望以上解决方案能够帮助到你。
阅读全文