How to make edittext scrolling smoothly

2019-06-09 21:12发布

问题:

I'm gonna make a texteditor, but there's a problem, it can not scroll smoothly especially when theres big text in it. I have overridedden the oninterceptTouchEvent and ignored some actions, but it doesn't work

回答1:

Did you tried this?

editText.setVerticalScrollBarEnabled(true);
editText.setMovementMethod(new ScrollingMovementMethod()); 

(assuming your EditText's editText)