当前位置: 代码迷 >> Android >> scroll中增添子容器,子容器中 gridview无法拖动
  详细解决方案

scroll中增添子容器,子容器中 gridview无法拖动

热度:13   发布时间:2016-05-01 10:20:19.0
scroll中添加子容器,子容器中 gridview无法拖动


然后容器内的gridview无法拖动
GridView scroll 滚动? 父容器 子容器

------解决方案--------------------
android:measureAllChildren="true"
再试试吧
------解决方案--------------------
引用:
http://www.cnblogs.com/over140/archive/2010/09/07/1820876.html

按照下面的方法试试
final ScrollView sv = (ScrollView) findViewById(R.id.scroll_layout);
mGridView.setOnTouchListener(new OnTouchListener() {//避免嵌套滚动view的touch事件冲突
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_UP)
sv.requestDisallowInterceptTouchEvent(false);
else
sv.requestDisallowInterceptTouchEvent(true);
return false;
}
});