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,585
  • 2
  • 17
  • 25

1 Answers1

2

Have a look at

public boolean onInterceptTouchEvent(MotionEvent ev) { }

Of the ScrollView classes.

Moritz
  • 10,124
  • 7
  • 51
  • 61