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。不幸的是,当将新文本加载到视图中时,该位置似乎粘住了,因此文本出现在屏幕外或完全不可见。有没有办法将当前“查看”的文本重置为顶部?
TextView 确实有一个从 View 继承的方法,您可以使用它,称为scrollTo(x,y)
scrollTo(x,y)
所以简单地说:
myTextView.scrollTo(0,0)