我有两个来自数据库的元素列表:
SimpleCursorAdapter list1 =
new SimpleCursorAdapter(this, R.layout.normal, c, from, to);
SimpleCursorAdapter list2 =
new SimpleCursorAdapter(this, R.layout.bold, d, from, to);
我如何同时显示它们(一个接一个或混合了元素,我不在乎)?目前我正在使用setListAdapter(list);显示其中一个。