要实现平滑滚动,可以使用smoothScrollTo()
方法。该方法可以实现平滑地滚动到指定位置。
示例代码如下:
int x = 0; // 横向滚动的位置
int y = 0; // 纵向滚动的位置
ScrollView scrollView = findViewById(R.id.scrollView); // 获取ScrollView对象
scrollView.smoothScrollTo(x, y); // 平滑滚动到指定位置
在上面的示例中,我们首先获取了ScrollView对象,并指定了要滚动到的位置(x, y)。然后调用smoothScrollTo()
方法实现平滑滚动。