【问题标题】:Android SwipeGesture working only in one direction,i have no clue why?Android SwipeGesture 只在一个方向工作,我不知道为什么?
【发布时间】:2013-08-11 22:28:14
【问题描述】:

我正在为 android 制作音乐播放器,但我最近用滑动手势对其进行了更新,但问题是只有一个手势(底部滑动有效)我检查了滑动手势类,这似乎没有任何问题

这是我的实现代码

LinearLayout LL=(LinearLayout) findViewById(R.id.LL);
LL.setOnTouchListener(new OnSwipeTouchListener() {
            public void onSwipeTop() {
                mp.stop();
                mp.release();
            }
            public void onSwipeRight() {
                mp.stop();
                mp.release();

            }
            public void onSwipeLeft() {
                mp.stop();
                mp.release();

            }
            public void onSwipeBottom() {
                mp.stop();
                mp.release();
            }
        }); 

这是我的刷卡类

public class OnSwipeTouchListener  extends Activity implements OnTouchListener{

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

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

    private final class GestureListener extends SimpleOnGestureListener {

        private static final int SWIPE_THRESHOLD = 70;
        private static final int SWIPE_VELOCITY_THRESHOLD = 60;

        @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;
        }
    }

    public void onSwipeRight() {
    }

    public void onSwipeLeft() {
    }

    public void onSwipeTop() {
    }

    public void onSwipeBottom() {
    }
}

【问题讨论】:

  • 但在我的情况下,滑动是在一个方向上工作......你能调试代码吗??如果不能,你为什么要用完全不同的方法发布这样的问题???首先我必须了解他的代码,然后是他的问题,然后根据我的需要进行更改,然后检查它是否对我有用...

标签: android audio-player swipe-gesture android-gesture android-music-player


【解决方案1】:

似乎代码没有问题..但问题出在视图,xml文件..

线性布局没有填满整个空间......所以唯一有效的滑动是底部滑动......而且也只在顶部区域。(存在线性布局的地方)...... .

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-02-13
    • 1970-01-01
    • 1970-01-01
    • 2019-07-04
    • 2015-12-16
    • 1970-01-01
    相关资源
    最近更新 更多