@Overridepublic boolean dispatchTouchEvent(MotionEvent ev) { //请求所有父控件不要拦截Touch事件 getParent().requestDisallowInterceptTouchEvent(true); return super.dispatchTouchEvent(ev);}
本文共 234 字,大约阅读时间需要 1 分钟。
@Overridepublic boolean dispatchTouchEvent(MotionEvent ev) { //请求所有父控件不要拦截Touch事件 getParent().requestDisallowInterceptTouchEvent(true); return super.dispatchTouchEvent(ev);}
转载于:https://www.cnblogs.com/corey611/p/6845621.html