Scroller中的startScroll方法的理解

    /**
     * Start scrolling by providing a starting point and the distance to travel.
     * The scroll will use the default value of 250 milliseconds for the
     * duration.
     * 
     * @param startX Starting horizontal scroll offset in pixels. Positive
     *        numbers will scroll the content to the left.
     * @param startY Starting vertical scroll offset in pixels. Positive numbers
     *        will scroll the content up.
     * @param dx Horizontal distance to travel. Positive numbers will scroll the
     *        content to the left.
     * @param dy Vertical distance to travel. Positive numbers will scroll the
     *        content up.
     */
    public void startScroll(int startX, int startY, int dx, int dy) {
        startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
    }

以提供的起始点和将要滑动的距离开始滚动。滚动会使用缺省值250ms作为持续时间。

参数

startX 水平方向滚动的偏移值,以像素为单位。正值表明滚动将向左滚动

startY 垂直方向滚动的偏移值,以像素为单位。正值表明滚动将向上滚动

dx 水平方向滑动的距离,正值会使滚动向左滚动

dy 垂直方向滑动的距离,正值会使滚动向上滚动

我的理解是:

startX 表示当前的位置,可以用getScrollX()得到

(原博文:表示起点在水平方向到原点的距离(可以理解为X轴坐标,但与X轴相反),正值表示在原点左边,负值表示在原点右边)

dx 用目标的位置减去当前的位置得到

(原博文:表示滑动的距离,正值向左滑,负值向右滑)



你可能感兴趣的:(Android基础)