如何在ListView中查找特定记录?

发布于 2025-01-06 01:51:07 字数 163 浏览 0 评论 0原文

假设我有一个包含 50 条记录的 Cursor,并且使用 ViewBinder 将其绑定到 ListView。我想找到特定的行(例如:_id 35)并确保该记录对 Android 设备上的用户可见。这可能吗?

Let's say that I have a Cursor that has 50 records in it and it is bound to a ListView using a ViewBinder. I'd like to find a specific row(example: _id 35) and make sure that record is visible to the user on the android device. Is this possible?

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

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

发布评论

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

评论(1

指尖凝香 2025-01-13 01:51:07

什么是查找特定行?您可以调用 Cursor c = (Cursor)adapter.getItem(position) 来获取指向用户所选位置的光标。然后您可以像 cursor.getString(cursor.getColumnIndexOrThrow("columnName")) 那样检索数据。

What is find a specific row? You can call Cursor c = (Cursor) adapter.getItem(position) to get a cursor pointing to the position the user selected. Then you can retrieve the data like cursor.getString(cursor.getColumnIndexOrThrow("columnName")).

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