• Android中监听ScrollView滑动停止和滑动到底部


    1.监听ScrollView滑动停止:

    /********************监听ScrollView滑动停止*****************************/
    scrollView.setOnTouchListener(new OnTouchListener() {
    	private int lastY = 0;
    	private int touchEventId = -9983761;
    	Handler handler = new Handler() {
    		@Override
    		public void handleMessage(Message msg) {
    			super.handleMessage(msg);
    			View scroller = (View) msg.obj;
    			if (msg.what == touchEventId) {
    				if (lastY == scroller.getScrollY()) {
    					handleStop(scroller);
    				} else {
    					handler.sendMessageDelayed(handler.obtainMessage(touchEventId, scroller), 5);
    					lastY = scroller.getScrollY();
    				}
    			}
    		}
    	};
    
    
    	public boolean onTouch(View v, MotionEvent event) {
    		if (event.getAction() == MotionEvent.ACTION_UP) {
    			handler.sendMessageDelayed(handler.obtainMessage(touchEventId, v), 5);
    		}
    		return false;
    	}
    
    
    	private void handleStop(Object view) {
    		ScrollView scroller = (ScrollView) view;
    		scrollY = scroller.getScrollY();
    	}
    });
    /***********************************************************/



    2.监听ScrollView滑动到底部:

    package com.example.webviewdemo;
    
    import android.content.Context;
    import android.util.AttributeSet;
    import android.widget.ScrollView;
    
    public class ScrollBottomScrollView extends ScrollView {
    
    	private ScrollBottomListener scrollBottomListener;
    
    	public ScrollBottomScrollView(Context context) {
    		super(context);
    	}
    
    	public ScrollBottomScrollView(Context context, AttributeSet attrs) {
    		super(context, attrs);
    	}
    
    	public ScrollBottomScrollView(Context context, AttributeSet attrs,int defStyle) {
    		super(context, attrs, defStyle);
    	}
    
    	@Override
    	protected void onScrollChanged(int l, int t, int oldl, int oldt){
    		if(t + getHeight() >=  computeVerticalScrollRange()){
    			//ScrollView滑动到底部了
    			scrollBottomListener.scrollBottom();
    		}
    	}
    
    	public void setScrollBottomListener(ScrollBottomListener scrollBottomListener){
    		this.scrollBottomListener = scrollBottomListener;
    	}
    
    	public interface ScrollBottomListener{
    		public void scrollBottom();
    	}
    
    }

    重写ScrollView的onScrollChanged的方法。

  • 相关阅读:
    移动端调试Vconsole
    Vue-返回顶部
    Vue-封装loading
    Vue-水印封装
    Vue-封装scroll触底
    微信小程序-图片上传
    前端面试题(2)
    前端常见面试题
    服务端渲染(SSR)和客户端(CSR)渲染的区别
    什么是模块化?模块化开发的好处
  • 原文地址:https://www.cnblogs.com/roccheung/p/5797440.html
Copyright © 2020-2023  润新知