0

I have a Gallery that contains a ScrollView. I can scroll through the text in the ScrollView with a vertical swipe as is standard. However, I would like the ScrollView to also listen for horizontal swipes which would then move the Gallery left or right. Does anyone know how to do that?

Thanks.

Swifty McSwifterton
  • 2,637
  • 1
  • 30
  • 37

1 Answers1

0

Okay, here is what I found. You will need to use onInterceptTouchEvent(). You can read about it here: http://developer.android.com/reference/android/view/ViewGroup.html

Alternatively, you can do a search for onInterceptTouchEvent example to find several examples.

Swifty McSwifterton
  • 2,637
  • 1
  • 30
  • 37