如何将多个数据库字段映射到位于ListView的一个TextView?

时间:2011-05-21 11:55:32

标签: android sqlite android-listview simplecursoradapter

以下是具有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_TIMER.id.time应显示DbAdapter.KEY_OPEN_TIME + " - " + DbAdapter.KEY_CLOSE_TIME之类的值。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

扩展CursorAdapter,您将获得更多控制权概述。

Tutorial