如何判断ScrollView 是否滑到底部?
//getScrollY() 向上滑动 为正值,向下滑动为负值
//getHeight() scrollView的高度,看好了不是内容的总高度哦
//computeVerticalScrollRange() 这个才是内容的总高度
//getBottom() scrollView的底部位置 getBottom=getHeight();
//mClidView.getBottom(); 内容的底部位置 mClidView.getBottom()=computeVerticalScrollRange()=mClidView.getHeight()
//mClidView.getHeight() 内容的高度 mClidView.getHeight()=computeVerticalScrollRange()=mClidView.getBottom()
if (getScrollY() + getHeight() >= computeVerticalScrollRange()) {
//到底部
} else {
//未到底部
}