3

I am developing an Android app with an Activity with a ScrollView that contains, among other stuff, a HorizontalScrollView. When I touch the HorizontalScrollView I want to disable vertical scrolling of the outer ScrollView. How do I achieve that?

Thanks Markus

Markus K
  • 1,466
  • 2
  • 17
  • 24

1 Answers1

2

Have a look at

public boolean onInterceptTouchEvent(MotionEvent ev) { }

Of the ScrollView classes.

Moritz
  • 9,828
  • 7
  • 47
  • 59