解决scrollview 嵌套ListView后,scrollTo(0, 0)不能滚到顶部有关问题

解决scrollview 嵌套ListView后,scrollTo(0, 0)不能滚到顶部问题

如题:如果你也像我一样由于某需求需要Scrollview嵌套ListView而ListView高度固定的话,这时候发现总是页面会停留在中间靠下位置,而不是顶部,而想到scrollview提供的scrollTo(0,0)是可以解决该问题的,但是实际操作发现不行。

解决方法如下:

你的scroolview.smoothScrollTo(0,20);

api是这么说的:

void android.widget.ScrollView.smoothScrollTo(int x, int y)

 

Like scrollTo, but scroll smoothly instead of immediately.//像ScrollTo,但平滑滚动,而不是立即。

Parameters:
x the position where to scroll on the X axis
y the position where to scroll on the Y axis