我有一个带有几个可点击的ImageViews的应用程序。所有这些图像都在LinearLayout中。

我实现了OnTouchListener并将其设置为LinearLayout。当我在其上滑动时,我的OnTouchListener会调用一个函数。

问题是,如果我开始在没有ImageViewsOnClickListener上滑动,则OnTouchListener起作用,但是当我开始在具有OnClickListener的图像上滑动时,则OnTouch功能不起作用。无法正常工作(该OnClickImageView也不正常)。

我想知道是否有一种方法可以让我的ImageViews使onClick将动作传递给下面的视图(如果用户滑动而不是单击),而如果用户只是单击则不传递。

提前致谢

最佳答案

我设法做到了,我发现的唯一方法是使用SimpleOnGestureListener。如果有人遇到相同的问题,我将复制粘贴代码。

创建一个这样的类:

public abstract class MyGestureDetector extends SimpleOnGestureListener {

private static final int SWIPE_MIN_DISTANCE = 100;
private static final int SWIPE_THRESHOLD_VELOCITY = 50;
private GestureDetector gestureDetector;
private View.OnTouchListener gestureListener;
private Activity activity;

public MyGestureDetector(Activity activity) {
    this.activity = activity;
    gestureDetector = new GestureDetector(this);
    gestureListener = new View.OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            return gestureDetector.onTouchEvent(event);
        }
    };
}

public abstract void onRightToLeftSwipe();

public abstract void onLeftToRightSwipe();

public abstract void onTopToBottomSwipe();

public abstract void onBottomToTopSwipe();

@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velX,
        float velY) {
    DisplayMetrics dm = activity.getResources().getDisplayMetrics();
    int REL_SWIPE_MIN_DISTANCE = (int) (SWIPE_MIN_DISTANCE * dm.densityDpi / 160.0f);
    int REL_SWIPE_THRESHOLD_VELOCITY = (int) (SWIPE_THRESHOLD_VELOCITY
            * dm.densityDpi / 160.0f);
    float deltaX = e1.getX() - e2.getX();
    float deltaY = e1.getY() - e2.getY();
    try {
        // swipe horizontal?
        if ((Math.abs(deltaX) > REL_SWIPE_MIN_DISTANCE)
                && (Math.abs(velX) > REL_SWIPE_THRESHOLD_VELOCITY)
                && (Math.abs(deltaX) > Math.abs(deltaY))) {
            // left or right
            if (deltaX < 0) {
                this.onLeftToRightSwipe();
                return true;
            }
            if (deltaX > 0) {
                this.onRightToLeftSwipe();
                return true;
            }
        } else if ((Math.abs(deltaY) > REL_SWIPE_MIN_DISTANCE)
                && (Math.abs(velY) > REL_SWIPE_THRESHOLD_VELOCITY)) { // swipe
            // vertical
            // top or down
            if (deltaY < 0) {
                this.onTopToBottomSwipe();
                return true;
            }
            if (deltaY > 0) {
                this.onBottomToTopSwipe();
                return true;
            }
        } else {
            return false; // We don't consume the event
        }

    } catch (Exception e) {
        // nothing
    }
    return false;
}

public View.OnTouchListener getGestureListener() {
    return gestureListener;
}

public void setGestureListener(View.OnTouchListener gestureListener) {
    this.gestureListener = gestureListener;
}
}


那么您必须在“活动”中执行此操作:

public void onCreate(Bundle savedInstanceState) {
     // Initializate your variables here
     // Using Gestures
     MyGestureDetector gestos = new MyGestureDetector(this) {

        @Override
        public void onTopToBottomSwipe() {
            // Do whatever

        }

        @Override
        public void onRightToLeftSwipe() {
            // Do whatever
        }

        @Override
        public void onLeftToRightSwipe() {
            // Do whatever
        }

        @Override
        public void onBottomToTopSwipe() {
            // Do whatever

        }
    };


最后但并非最不重要的一点是,您必须将TouchListener放入要在其中滑动的布局,并在可单击的布局中进行每个视图

layoutSwipe = (LinearLayout) findViewById(R.id.layoutSwipe);
layoutSwipe.setOnTouchListener(gestos.getGestureListener());
viewInsidells.setOnTouchListener(gestos.getGestureListener());
view2Insidells.setOnTouchListener(gestos.getGestureListener());


这样,您就可以在布局内使视图变得容易滑动,如果单击它,将仅执行所单击视图的单击动作;如果滑动,则将仅根据您的移动进行滑动动作。

我花了4个小时尝试解决这个问题,希望我可以节省一些时间来解决下一个问题。

关于android - OnClick抑制下面的OnTouch,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12843965/

10-09 04:35