获取listview当前滚动的高度
Posted wikiki
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取listview当前滚动的高度相关的知识,希望对你有一定的参考价值。
public int getScrollY() {
View c = mListView.getChildAt(0);
if
(c ==
null
) {
return
0;
}
int firstVisiblePosition = mListView.getFirstVisiblePosition();
int top = c.getTop();
return
-top + firstVisiblePosition * c.getHeight() ;
}
以上是关于获取listview当前滚动的高度的主要内容,如果未能解决你的问题,请参考以下文章