获得中间坐标

时间:2013-11-04 13:34:51

标签: android swipe gestures

我有一个从SimpleOnGestureListener扩展的类,在该类中我得到了一个方法: public boolean onFling(MotionEvent e1,MotionEvent e2,float velocityX,float velocityY)。

现在我可以获得e1和e2坐标,我可以检查它是什么类型的手势,但是也可以获得中间坐标吗?

1 个答案:

答案 0 :(得分:0)

自己找到它:

    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...");
                }
            }