Scrollview vertical and horizontal in android

前端 未结 11 883
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 05:30

I\'m really tired looking for a solution for vertical and horizontal Scrollview.

I read that there are not any views/layouts in the framework which implement this fe

11条回答
  •  执笔经年
    2020-11-22 06:05

    Option #1: You can come up with a new UI design that does not require simultaneous horizontal and vertical scrolling.

    Option #2: You can obtain the source code to ScrollView and HorizontalScrollView, learn how the core Android team implemented those, and create your own BiDirectionalScrollView implementation.

    Option #3: You can get rid of the dependencies that are requiring you to use the widget system and draw straight to the Canvas.

    Option #4: If you stumble upon an open source application that seems to implement what you seek, look to see how they did it.

提交回复
热议问题