Android: How to disable vertical scroll of ScrollView when scrolling a HorizontalScrollView?

蹲街弑〆低调 提交于 2019-12-09 18:51:28

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!