我有两个按钮可以切换到下一个事件列表和上一个事件列表。
当我转到下一个/上一个事件时,滚动将保留在下面的某个位置。但是我需要“倒带”它。
我想:
scrollViewEventDetails.pageScroll(ScrollView.FOCUS_UP);
和:
scrollViewEventDetails.scrollTo(0, 0);
但这是行不通的。请帮忙!
最佳答案
您应该接下来写:
scrollViewEventDetails.fullScroll(View.FOCUS_UP);//if you move at the end of the scroll
scrollViewEventDetails.pageScroll(View.FOCUS_UP);//if you move at the middle of the scroll
关于android - Android:如何在顶部滚动ScrollView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6261958/