Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using a GridView for a game board. Recently some users have had problems with the board scrolling vertically (on Samsung Galaxy / Vibrant phones running 2.2) -- This bug does not occur on my Nexus One.

One user produced some screenshots of the problem.

How could I lock the GridView in place? Is there a way to disable scrolling?

share|improve this question

2 Answers

up vote 36 down vote accepted

Try to add or override setOnTouchListener for GridView, then in onTouch method you can use code like this to make gridview not scrolling :

gridview.setOnTouchListener(new OnTouchListener(){

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if(event.getAction() == MotionEvent.ACTION_MOVE){
            return true;
        }
        return false;
    }

});
share|improve this answer
6  
This is a correct solution and should be accepted answer to the question. – Paul Dec 31 '11 at 3:57
1  
+1 @Thanks it worked for me... – Inder Kumar Rathore Jan 3 '12 at 10:56
1  
this is what I need. Thanks. – jayellos May 2 '12 at 12:52

You can try setEnabled(false), although it might have other side effects. GridView is really not meant to be used the way you are using it. You should create your own custom view or layout. You could also use a TableLayout.

share|improve this answer
Yep, I realize it should be a custom view. Will be a bit more involved to replace the current GridView (Early design error). Was hoping there would be a quick fix :) The setEnabled() method disables all functionality. Thanks Romain – pjama Jan 31 '11 at 20:36
1  
Romain Guy reeeeally does not want you to use a GridView without scrolling. I use this stackoverflow.com/a/4536955/671543 trick. – njzk2 Dec 2 '11 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.