Android 设置 grid 不滚动

解决办法:在Activity类中 添加方法

public boolean dispatchTouchEvent(MotionEvent ev) {
        if(ev.getAction() == MotionEvent.ACTION_MOVE){
            return true;//forbid its child(gridview) to scroll
        }
        return super.dispatchTouchEvent(ev);
    }

 

posted @ 2015-04-13 11:24  天外飞仙丶  阅读(335)  评论(0编辑  收藏  举报