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)