0
点赞
收藏
分享

微信扫一扫

Android 滑动方向整理

绪风 2022-03-11 阅读 127
androidjava

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
举报

相关推荐

0 条评论