问题
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
回答1:
Have a look at
public boolean onInterceptTouchEvent(MotionEvent ev) { }
Of the ScrollView classes.
来源:https://stackoverflow.com/questions/4767519/android-how-to-disable-vertical-scroll-of-scrollview-when-scrolling-a-horizonta