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

发布于 2024-11-08 16:43:18 字数 502 浏览 0 评论 0原文

这是具有一对一字段映射的代码:

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。

我该怎么做呢?

Here is the code with 1-to-1 field mapping:

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);

But I have another field in my database - DbAdapter.KEY_CLOSE_TIME and R.id.time should display value like DbAdapter.KEY_OPEN_TIME + " - " + DbAdapter.KEY_CLOSE_TIME.

How can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾铮苏瑾 2024-11-15 16:43:18

扩展CursorAdapter,您将可以更好地控制视图。

教程

Extend CursorAdapter, you'll have more controll over view.

Tutorial

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文