如何将 ListView 滚动到特定 id 并将该项目设置为选中状态?

发布于 2024-12-13 13:07:57 字数 147 浏览 3 评论 0原文

我有一个 ListView 映射到 SQLCursorAdapter。默认情况下,我总是希望检查与特定 id 相对应的视图,并滚动 ListView 以使该特定项目可见。我该如何实现这一目标?

注意:项目的数量可以是几百个,我想要检查的项目可以在列表中的任何位置。

I have a ListView mapped to a SQLCursorAdapter. By default, I always want to have the view corresponding to a particular id checked, and have the ListView scrolled so as to make that particular item visible. How do I achieve that?

Note: The number of items can be a few hundreds, and item I want to have checked can be anywhere in the list.

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

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

发布评论

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

评论(2

半枫 2024-12-20 13:07:57

您可以使用该方法,

listView.setSelection(position)

You can use the method,

listView.setSelection(position)
叹梦 2024-12-20 13:07:57

尝试使用这个:

listView.smoothScrollToPosition(position);

文档中,听起来它应该做你想要的事情。

至于将项目设置为选中,只需使用类似以下内容的内容(我假设它是一个作为变量的复选框):

checkbox.setChecked(true);

Try using this:

listView.smoothScrollToPosition(position);

From the documentation, that sounds like it should do what you're after.

As for setting the item to checked, simply use something like the following (I'm assuming it's a checkbox you have as a variable):

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