Andre
Andre

Reputation: 1277

TextView scrollable + onTouchListiner

I have a TextView that is scrollable. I've done this through setMovementMethod(...). Now I'd like to add an OnTouchListener (setOnTouchListener (...) to handle sideways movements as well, but when I do so, the view is no longer scrollable. How can I enable both?

Upvotes: 0

Views: 69

Answers (1)

Boukharist
Boukharist

Reputation: 1229

you are probably returning true on your override of the "onTouch(View, MotionEvent)" method

Upvotes: 1

Related Questions