View向下scroll
滑动前
滑动后
View向下fling
fling前(ACTION_UP的时机)
View向下fling(computeScroll时机)
总结
与实际的scroll相关的方向都是以向上为正方向,包括:
- scrollY
- canScrollVertically(dicection: Int) direction的值
- scrollBy(0, dy) dy的值
其他的属性都是和正常的向下的坐标系相同的方向,以向下为正方向。上述描述中主要包括:
- delatY = currY - lastY
- velocityY
- scroller.deltaY = scroll.currY - scroll.lastY