Android: HorizontalScrollView inside ScrollView

前端 未结 6 1893
忘掉有多难
忘掉有多难 2021-02-05 12:46

I have multiple HorizontalScrollViews inside a ScrollView. Horizontal scroll isn\'t smooth at all. I have to scroll almost perfectly horizontal

6条回答
  •  悲哀的现实
    2021-02-05 12:56

    In general, you shouldn't be using nested ScrollViews in Android at all, the behaviour of scrolling in this way is unnatural too.

    You may want to rethink your layout design, is it anything that couldn't be achieved with an expandable list?

提交回复
热议问题