首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

监听 ScrollView 滑动终究部

2013-08-14 
监听 ScrollView 滑动到底部scrollView.setOnTouchListener(new OnTouchListener() {@Overridepublic bool

监听 ScrollView 滑动到底部
scrollView.setOnTouchListener(new OnTouchListener() {@Overridepublic boolean onTouch(View v, MotionEvent event) {// 获取int y = scrollView.getScrollY();int[] location = new int[2];mFooterView.getLocationInWindow(location);if ( y >= location[1] + mFooterView.getHeight()) {System.out.println("----------底部");}return false;}});

?

热点排行