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.
我在我的应用程序中制作了一个滚动视图,它工作正常。我有一些按钮单击我想滚动到所需位置的按钮。我怎么能做到这一点最后一件事我怎么能在网格视图中结束我的图像之间的空间所以所有的照片都在一起生病了。提前致谢。
试试这个:
yourScrollView.post( new Runnable() { @Override public void run() { yourScrollView.scrollTo(desiredPositionX, desiredPositionY); } } );