scrollview 自动滑动到某一个控件的位置

蓬英逸
2023-12-01
scrollview 嵌套下面的布局时候,有时候项目中有这样一个需求,要求自动滑动到指定布局控件到屏幕中间。 

可以使用一下方法实现:

 调用方法

int[] intArray = new int[2];
linCardHistory.getLocationOnScreen(intArray);//测量某View相对于屏幕的距离
scrollByDistance(intArray[1]);
/** * 自动滑动到某个位置 * @param dy */ //控制nestedScrollView滑动到一定的距离 
private int nestedScrollViewTop; 
public void scrollByDistance(int dy) { if (nestedScrollViewTop == 0) { int[] intArray = new int[2]; scrollView.getLocationOnScreen(intArray); nestedScrollViewTop = intArray[1]; } int distance = dy - nestedScrollViewTop;//必须算上nestedScrollView本身与屏幕的距离 scrollView.fling(distance);//添加上这句滑动才有效 scrollView.smoothScrollBy(0, distance); }
 类似资料: