如题:如果你也像我一样由于某需求需要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
ScrollView嵌套ListView问题解决
本文解决了ScrollView嵌套ListView时,页面无法停留在顶部的问题。通过使用ScrollView的smoothScrollTo方法,可以实现页面平滑滚动到顶部。
4133

被折叠的 条评论
为什么被折叠?



