到现在为止,我曾经以ListView
这种方式填充我,使用SimpleAdapter
:
// Example of a list with cells containing some text and an image
SimpleAdapter mSchedule = new SimpleAdapter (this.getBaseContext(), list, R.layout.my_cell,
new String[] {"img", "title"}, new int[] {R.id.img, R.id.title});
list.setAdapter(mSchedule);
这个解决方案效果很好,但我只能在这里使用一种单元格my_cell
。
有什么办法解决这个问题吗?谢谢。