I have a screen where I have a header, a TextView inside a ScrollView and footer. I have to use ScrollView as the Text in the TextView can be long also.

Now when I am using SimpleOnGestureListener for this screen. It is not working for the ScrollView section. Removing the ScrollView everything working fine. But for the case of long text, some text are getting missed.

I want to use onFling and onDoubleTap in SimpleOnGestureListener.

Please advise.

Regards, Shankar

link|improve this question

42% accept rate
feedback

2 Answers

You have to create a custom ScrollView object and override it's onTouchEvents to also check for your gestures. It's demonstrated in the following code.

public class GestureScrollView extends ScrollView {

                GestureDetector myGesture;

                public GestureScrollView(Context context, GestureDetector gest) {
                    super(context);
                    myGesture = gest;
                }

        public GestureScrollView(Context context) {
            super(context);
        }
        public GestureScrollView(Context context, AttributeSet attrs) {
            super(context, attrs);
        }

        @Override
        public boolean onTouchEvent(MotionEvent ev) {
            if (myGesture.onTouchEvent(ev)) return true;
                    else return super.onTouchEvent(ev);
        }
        @Override
        public boolean onInterceptTouchEvent(MotionEvent ev) {
            if (myGesture.onTouchEvent(ev)) return true;
                    else return super.onInterceptTouchEvent(ev);
        }
    }

Let me know if you run into any issues. :)

-Zaid

link|improve this answer
Thanks for the reply. – Bhabani Shankar Aug 21 '11 at 13:42
Thanks for the reply. But how would I pass the pass my GestureDetector to this custom ScrollView class. – Bhabani Shankar Aug 21 '11 at 13:49
You can make you GestureDetector a global variable or you can add another constructor with a GestureDetector as an argument and a local variable. I edited the code to show how to make the other constructor. – BananaNutTruffles Aug 21 '11 at 14:04
Thanks . Facing nullpointerexception in the onTouchEvent method for myGesture object. I am passing the gesture object as follows from my Activity class: gestureDetector = new GestureDetector(new MyGestureDetector()); gestureListener = new View.OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { if (gestureDetector.onTouchEvent(event)) { return true; } return false; } }; scrollV = new GestureScrollView(getApplicationContext(), gestureDetector); Please advise – Bhabani Shankar Aug 21 '11 at 16:57
Try gestureDetector = new GestureDetector(gestureListener); – BananaNutTruffles Aug 22 '11 at 0:34
show 1 more comment
feedback

I got the solution for this issu

Add following method in the your Activity class

@Override
public boolean dispatchTouchEvent(MotionEvent ev){
    super.dispatchTouchEvent(ev);
    return gestureScanner.onTouchEvent(ev);
} 

As suggested in the below link:

http://groups.google.com/group/android-developers/browse_thread/thread/9fdfb03d0959e299

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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