【android】判断HorizontalScrollView/ScrollView滑到最左/上和最右/下
HorizontalScrollView:
@Override protected void onScrollChanged(int l, int t, int oldl, int oldt) { // TODO Auto-generated method stub super.onScrollChanged(l, t, oldl, oldt); int maxScrollX = getChildAt(0).getMeasuredWidth()-getMeasuredWidth(); //滑到最左 if (getScrollX() == 0 ) { }else if (getScrollX() == maxScrollX) { //滑到最右 }else { //滑到中间 } }
ScrollView:
只需将上面代码中的ScrollX改为ScrollY,MeasuredWidth改为MeasuredHeight即可
参考http://stackoverflow.com/questions/9597943/how-to-detect-that-the-horizontalscrollview-has-reached-an-end
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。