记录_VelocityTracker_速度追踪
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录_VelocityTracker_速度追踪相关的知识,希望对你有一定的参考价值。
首先是在view的onTouchEvent中追踪当前滑动的情况:
//获取速度监听
VelocityTracker tracker = VelocityTracker.obtain();
//将滑动事件传递给速度监听
tracker.addMovement(motionEvent);
//设置蒋婷的时间单位,毫秒,计算平均多少像素/时间单位>>>>>>在这个时间间隔中移动了多少像素
tracker.computeCurrentVelocity(1000);
//获取速度 右话是正值,左划是负值
int teackerX= (int) tracker.getXVelocity();
//监听完毕后需要进行销毁
tracker.clear();
tracker.recycle();
以上是关于记录_VelocityTracker_速度追踪的主要内容,如果未能解决你的问题,请参考以下文章
Android扩展-VelocityTrackerGestureDetector的使用
Android :安卓学习笔记之 Android View 的基础知识和冲突事件处理