Comments

Android TextView, ScrollView and gestures — 2 Comments

  1. I am having the EXACT same problem. Any hopes of you posting your code for the TextView that allowed you to scroll normally & read a swipe action?

    • Actually, I don’t have scroll capability now. It’s fundamentally incompatible with the other gestures (without some complicated mechanism to transfer the gesture from the ScrollView to the other view objects). What I settled on is using side-to-side swipe to move between different text values, and using up-and-down gestures to make the font larger and smaller. All of my handler code is in onFling.

      If you need to scroll, maybe it’s possible to capture the gesture before it gets to the ScrollView and then manually scroll it – some kind of overlay. I decided it was easier to change my UI concept than to work around that bug. Good luck!