我正在尝试使用一个表中的数据创建一个列表视图。I want to get the list with the field "name" of the table but when selected i want it to return the field "ID".
mapDao = new MapDao(connSource, Map.class);
List<Map> maps;
maps = mapDao.queryForAll();
ListView mapList = (ListView) findViewById(R.id.mapList);
//??????//
setContentView(mapList);
如何在列表中插入“名称”然后获取 ID?
(对不起我的英语不好...)
编辑:
嗯,根据我的发现,我必须使用一个适配器......一个 ArrayAdapter?游标适配器?我不知道。我认为我不能在适配器上使用“列表”?