主要解决的问题:实现父控件和子控件都可以滑动,并且当子控件滑动到最低端,继续滑动的时候,获得父控件焦点,同理,向上滑动 步骤: 第一步:继承OnTouchListener,第二步:帖代码 /** * ScrollView中嵌套SrcollView 滑动冲突 */ float start=0; float start1=0; @Override public boolean onTouch(View arg0, MotionEvent arg1) { switch (arg0.getId()) { case R.id.scrParent://父控件布局 scrChild.getParent().requestDisallowInterceptTouchEvent(false); scrChildren.getParent().requestDisallowInterceptTouchEvent(false); break; case R.id.scrChild://子控件布局 if ((arg1.getY() - start) > 0) { if (arg0.g