获取中间坐标
我有一个从SimpleOnGestureListener扩展的类,在那个类中我有一个方法:public boolean onFling(MotionEvent e1,MotionEvent e2,float velocityX,float velocityY)。
现在我可以获得e1和e2坐标,我可以检查它是什么样的手势,但是是否有可能获得中间坐标?
自己找到了:
View testview = (View) findViewById(R.id.testView);
// Set the touch listener for the main view to be our custom gesture listener
testview.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_MOVE)
{
Log.d("Gestures","Moving...");
}
}
链接地址: http://www.djcxy.com/p/91233.html