AbstractListView源码分析6

来源:互联网 发布:淘宝财富值怎么刷的 编辑:程序博客网 时间:2024/05/20 16:36
/**
     * The position of the view that received the down motion event
     */
    int mMotionPosition;  接收到向下移动事件的视图的位置


    /**
     * The offset to the top of the mMotionPosition view when the down motion event was received
     */
    int mMotionViewOriginalTop; 当向下移动事件获得到是这mMotionPosition视图头部的距离


    /**
     * The desired offset to the top of the mMotionPosition view after a scroll
     */
    int mMotionViewNewTop;在一个滑动后期待的偏移距离到mMotionPositon的头部


    /**
     * The X value associated with the the down motion event
     */
    int mMotionX; 向下移动事件相关的x的值


    /**
     * The Y value associated with the the down motion event

     */

 int mMotionY;向下移动事件的y值

0 0