如何禁止Gridview滑动
摘要:继承GridView,并重写dispatchTouchEvent()方法。1 @Override2 public boolean dispatchTouchEvent(MotionEvent ev) {3 if (ev.getAction() == MotionEvent.ACTION_MOVE) {4 return true;5 }6 return super.dispatchTouchEvent(ev);7 }
阅读全文
posted @ 2012-03-20 16:20
浙公网安备 33010602011771号