Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检测用户滚动的列表视图上的像素数。同时,我可以基于已滚动的像素数,并显示带有已滚动像素的文本视图。
将不胜感激您的回答。谢谢!
正义便士
View.getScrollY应该有帮助。这应该给你你正在寻找的滚动位置。
View.getScrollY
检查我对这个问题的回答。
View.getScrollY()
是从 View 继承的方法,文档说:
返回此视图的滚动顶部位置。这是视图显示部分的顶部边缘。
因此,对于全屏列表,它将始终返回 0。