以下是具有1对1字段映射的代码:
String[] from = new String[]{DbAdapter.KEY_TITLE,
DbAdapter.KEY_OPEN_TIME,
DbAdapter.KEY_FAVORITE};
int[] to = new int[]{R.id.name, R.id.time, R.id.icon};
SimpleCursorAdapter lists =
new SimpleCursorAdapter(this, R.layout.row, listsCursor, from, to);
但我的数据库中有另一个字段 - DbAdapter.KEY_CLOSE_TIME
和R.id.time
应显示DbAdapter.KEY_OPEN_TIME + " - " + DbAdapter.KEY_CLOSE_TIME
之类的值。
我该怎么做?