有什么方法可以找出列表视图中显示了多少个项目?
我想对用户无需滚动即可看到的列表视图的项目执行特定操作。是否有办法获取显示的项目数量,或者是否有其他方法可以解决此问题?
I want to do a particular action on the items of the listview that the user can see without scrolling. Is there anyway to get the amount of items shown, or is there any other way of approaching this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道您的具体要求是什么,但要知道当前可见的无列表项
I dont know what exact is your requirement but to know the no list items that are currently visible
您可以在下面找到
listview
有多少项:You can find how many items of
listview
below:您的
ListView
可以实现onScrollListener
,您可以在其中重写其onScroll
方法。该方法接收以下参数:也许您可以从这里开始。
Your
ListView
can implementonScrollListener
where you can override itsonScroll
method. The method receives following arguments:Perhaps you can start from this.