也许会有人遇到,在这里说下解决方法。方便以后有人纠结这个问题。

开发中经验会遇到滑动里面嵌入滑动的问题,但是这种情况下触摸事件就会发生冲突。导致滑动非常卡,甚至出现程序停止响应。这种情况下我们一般需要重写view。下面给出重新scrollview的方法

?
public class CustomScrollView extends ScrollView { 
    private GestureDetector mGestureDetector; 
    View.OnTouchListener mGestureListener; 
  
    public CustomScrollView(Context context, AttributeSet attrs) { 
        super(context, attrs); 
        mGestureDetector = new GestureDetector(new YScrollDetector()); 
        setFadingEdgeLength(0); 
    } 
  
    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) { 
        return super.onInterceptTouchEvent(ev) && mGestureDetector.onTouchEvent(ev); 
    } 
  
    // Return false if we're scrolling in the x direction   
    class YScrollDetector extends SimpleOnGestureListener { 
        @Override
        public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { 
            if(Math.abs(distanceY) > Math.abs(distanceX)) { 
                return true; 
            } 
            return false; 
        } 
    } 
}


使用的时候使用这个自定义的控件就可以了。

转载原创文章请注明,转载自:IT驿站[http://www.blogchen.com]

本文链接: http://www.blogchen.com/archives/584.html

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐