Android中的手势滑动

我正在开发一个应用程序,在这里我有一个基本的活动,当我从左到右滑动时,我需要我需要一个滑动窗口,它将显示一些图标,当我从右向左点击时,我需要一个滑动窗口从右到左......我研究了一下......发现了一些选项,如导航抽屉和滑动窗口和查看传呼机......但轻扫手势JST从一页连续滑动到另一页......我不想那样。 ..我需要显示几个图标,当我从左到右,从右到左滑动....但我不知道确切哪一个用于更好的导航....我用下面的代码:

@Override public boolean onFling(MotionEvent e1,MotionEvent e2,float velocityX,float velocityY){String swipe =“”; 浮动灵敏度= 50;

        // TODO Auto-generated method stub

        if((e1.getX() - e2.getX()) > sensitvity){
            swipe += "Swipe Leftn";
            SwipeLeft();
        }else if((e2.getX() - e1.getX()) > sensitvity){
            swipe += "Swipe Rightn";
        }else{
            swipe += "n";
        }

        if((e1.getY() - e2.getY()) > sensitvity){
            swipe += "Swipe Upn";
        }else if((e2.getY() - e1.getY()) > sensitvity){
            swipe += "Swipe Downn";
        }else{
            swipe += "n";
        }

        gestureEvent.setText(swipe);

        return super.onFling(e1, e2, velocityX, velocityY);
    }
};

我很困惑,我应该使用查看传呼机的刷卡..这是我想要的东西.. 在这里输入图像描述 帮助赞赏。 谢谢。


如果你想从屏幕两侧尝试像导航抽屉这样的东西,即从右到左交换和从左到右的下面的链接将帮助你

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

上一篇: Gesture Swipe in Android

下一篇: Error while rotating an image in Android Eclipse