如何将 ListView 滚动到特定 id 并将该项目设置为选中状态?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用该方法,
You can use the method,
尝试使用这个:
从文档中,听起来它应该做你想要的事情。
至于将项目设置为选中,只需使用类似以下内容的内容(我假设它是一个作为变量的复选框):
Try using this:
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):