标签:
解决办法:在Activity类中 添加方法
public boolean dispatchTouchEvent(MotionEvent ev) { if(ev.getAction() == MotionEvent.ACTION_MOVE){ return true;//forbid its child(gridview) to scroll } return super.dispatchTouchEvent(ev); }
标签:
原文地址:http://www.cnblogs.com/yu-zhang/p/4421702.html