与光标适配器绑定的列表视图 - 如何添加默认的第一个条目

发布于 2024-11-17 01:41:04 字数 113 浏览 4 评论 0原文

将第一个默认项添加到列表视图(从 CursorAdapter 获取数据)的常见方法是什么?我想要一个包含项目的列表视图,其中第一个条目类似于“添加项目”。 制作自定义适配器不会有帮助,因为它会弄乱光标项目计数。

What is the common way to add a first default item to the listview, which takes it's data from a CursorAdapter? I would like to have a listview with items where the first entry is something like "Add item".
Making a custom adapter won't help because it would mess up the cursor item count.

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

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

发布评论

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

评论(2

゛清羽墨安 2024-11-24 01:41:04

在您的情况下,最好的解决方案是使用方法 addHeaderView

为什么你要从cursorAdapter获取第一项的数据?只需将 TextView 设置为标题视图即可。

In your situations the best solution is using the method addHeaderView.

Why do u want taking data from cursorAdapter for the first item? Just set a TextView as a header view.

你在我安 2024-11-24 01:41:04

尝试使用带有联合的选择,

例如

select 'Select something' as denominazione, 0 as _id union select denominazione, id as _id from ditta order by id asc

Try using a select with union

like

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