Android Trick - make gridview unscrollable
Damon
How to make Android Gridview unscrollable.
I found one solution is :
How to make Android Gridview unscrollable.
I found one solution is :
GridView.setOnTouchListener(new OnTouchListener(){
public boolean onTouch(View v, MotionEvent event) {
return event.getAction() == MotionEvent.ACTION_MOVE;
}
});
the code means consume the gridview's ACTION_MOVE touch event.
Comments
Post a Comment