How to make edittext scrolling smoothly

旧巷老猫 提交于 2019-12-08 14:24:10

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!