问题
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)
来源:https://stackoverflow.com/questions/29304118/how-to-make-edittext-scrolling-smoothly