Reputation: 1277
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
Reputation: 1229
you are probably returning true on your override of the "onTouch(View, MotionEvent)" method
Upvotes: 1