Android 按钮 onClick 方法转到布局顶部

Android button onClick method to go to top of layout

我一直在搜索很多有关如何为允许转到大型(可滚动)布局顶部的按钮实现 onClick 方法的信息,但我没有找到任何文档。有什么办法吗?

试试这个:

scrollView.fullScroll(View.FOCUS_UP);//if you move at the end of the scroll

scrollView.pageScroll(View.FOCUS_UP);//if you move at the middle of the scroll

试试下面的代码来改变滚动的位置。

scrollView.setScrollY(0);

Check this link for more detail.

试试这个 scrollView.scrollTo(View.getTop(),View.getRight());