1

我有一个我个性化的列表视图,我添加了setOnItemLongClickListener()它,效果很好。然后我决定实现一个listView.setOnTouchListener(new OnSwipeTouchListener())也很好用的手势。OnSwipetouchListener我从另一个帖子中复制了课程。

问题是,当我添加滑动监听器时,longPress 不再起作用。我猜这是因为滑动侦听器自己采取了长按动作,并且不允许长按做任何事情。

我想做的事:

滑动侦听器在 2 秒内获得所有内容,之后所有内容都进入 longpress。所以我仍然可以通过滑动手势更改列表视图内容,还可以为每个列表项创建函数。

我的代码:

public class OnSwipeTouchListener implements OnTouchListener {

    private final GestureDetector gestureDetector = new GestureDetector(new GestureListener());

    public boolean onTouch(final View v, final MotionEvent event) {
        //super.onTouch(v, event);
         return gestureDetector.onTouchEvent(event);
    }

    private final class GestureListener extends SimpleOnGestureListener {

        private static final int SWIPE_THRESHOLD = 100;
        private static final int SWIPE_VELOCITY_THRESHOLD = 100;

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

        @Override
        public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
            boolean result = false;
            try {
                float diffY = e2.getY() - e1.getY();
                float diffX = e2.getX() - e1.getX();
                if (Math.abs(diffX) > Math.abs(diffY)) {
                    if (Math.abs(diffX) > SWIPE_THRESHOLD && Math.abs(velocityX) > SWIPE_VELOCITY_THRESHOLD) {
                        if (diffX > 0) {
                            onSwipeRight();
                        } else {
                            onSwipeLeft();
                        }
                    }
                } else {
                    if (Math.abs(diffY) > SWIPE_THRESHOLD && Math.abs(velocityY) > SWIPE_VELOCITY_THRESHOLD) {
                        if (diffY > 0) {
                            onSwipeBottom();
                        } else {
                            onSwipeTop();
                        }
                    }
                }
            } catch (Exception exception) {
                exception.printStackTrace();
            }
            return result;
        }
...methods...
}
4

1 回答 1

1

删除 onDown 方法。现在它总是返回 true 并阻止 longPress 被处理。

于 2013-02-19T19:22:35.597 回答