如何让GestureDetector正常工作

到目前为止,我的活动中包含以下代码:

private class SwipeGestureDetector extends SimpleOnGestureListener {
    // Swipe properties, you can change it to make the swipe 
    // longer or shorter and speed
    private static final int SWIPE_MIN_DISTANCE = 120;
    private static final int SWIPE_MAX_OFF_PATH = 200;
    private static final int SWIPE_THRESHOLD_VELOCITY = 200;

    @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
      try {
        float diffAbs = Math.abs(e1.getY() - e2.getY());
        float diff = e1.getX() - e2.getX();
        Log.d("MainDisplayActivity", "Gesture class is running");
        if (diffAbs > SWIPE_MAX_OFF_PATH)
          return false;

        // Left swipe
        if (diff > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
           MainDisplayActivity.this.onLeftSwipe();

        // Right swipe
        } else if (-diff > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
          MainDisplayActivity.this.onRightSwipe();

        }

      } catch (Exception e) {
        Log.e("YourActivity", "Error on gestures");

      }
      return false;
    }

  }//end of SwipeGestureDetector class

  //methods called by SwipeGestureDetector when the approrpiate swipes occured
  private void onLeftSwipe() {
        Toast.makeText(this, "Successfully have the swipe working for left", Toast.LENGTH_SHORT).show();
  }

  private void onRightSwipe() {
      Toast.makeText(this, "Successfully have the swipe working for right", Toast.LENGTH_SHORT).show();
  }

我有这个全球: private GestureDetector gestureDetector;

onCreate我有这个,因为它是我见过的人做的事情:

gestureDetector = new GestureDetector(this, new SwipeGestureDetector());
    ((LinearLayout)findViewById(R.id.parent_main_display)).setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            return gestureDetector.onTouchEvent(event);
        }
    });

不确定我做错了什么,但是当我滑动时没有发生任何事情。 有任何想法吗?


你应该向下一个观察

@Override
 public boolean onDown(MotionEvent e) {
  return true;
 }

 @Override
 public boolean onSingleTapUp(MotionEvent e) {
  return true;
 }

也onFling应该返回true

链接地址: http://www.djcxy.com/p/16199.html

上一篇: How to get GestureDetector working correctly

下一篇: Deploying PyQt5 application to Android via pyqtdeploy and Qt5