Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用这个简单的命令使我的 TextView 可滚动:
mainText.setMovementMethod(new ScrollingMovementMethod());
问题如下:
如果用户向下滚动,并且文本发生变化,它会保持滚动状态,因此您需要向上滚动。每次滚动时都有什么方法可以“重置”滚动?
谢谢!
使用继承的方法 scrollTo(x,y) 在更新数据时设置位置,即
mainText.scrollTo(0,0);