Android中的手势滑动

Gesture Swipe in Android

我正在开发一个应用程序,在我有一个基本活动,当我从左向右滑动我需要我需要一个滑动窗口,将显示几个图标,当我从右向左点击我需要一个刷卡窗口 从右到左...我研究了一下......找到了一些选项,如导航抽屉和滑动窗口和查看寻呼机....但是滑动手势jst从一个页面连续滑动到另一个...我不想要那个。 ..我需要显示几个图标,当我从左向右和从右向左滑动....但我不知道究竟哪一个用于更好的导航....
我使用以下代码:

@覆盖
public boolean onFling(MotionEvent e1,MotionEvent e2,float velocityX,
float velocityY){
String swipe =";
float sensitvity = 50;

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
        // TODO Auto-generated method stub

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

        if((e1.getY() - e2.getY()) > sensitvity){
            swipe +="Swipe Up
";
        }else if((e2.getY() - e1.getY()) > sensitvity){
            swipe +="Swipe Down
";
        }else{
            swipe +="
";
        }

        gestureEvent.setText(swipe);

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

我很困惑,我应该使用轻扫视图寻呼机..
这就是我想要的东西.. enter image description here
帮助赞赏。
谢谢。


如果你想从屏幕两侧尝试类似导航抽屉的东西,即从右到左交换,从左到右跟随链接将帮助你