Android GestureDetector onScroll()问题(执行3次)

Android GestureDetector onScroll()问题(执行3次),android,Android,我有一段代码,可以使用GestureDetector检测滚动手势。它可以工作,只是它检测到滚动活动3次而不是一次 我怎样才能让它只检测一次?它记录滚动活动(log.i行)3次,并播放声音(mp.start)3次而不是一次。。。。也会导致我的应用程序强制关闭 public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) { //get x and Y co-o

我有一段代码,可以使用GestureDetector检测滚动手势。它可以工作,只是它检测到滚动活动3次而不是一次

我怎样才能让它只检测一次?它记录滚动活动(log.i行)3次,并播放声音(mp.start)3次而不是一次。。。。也会导致我的应用程序强制关闭

  public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {

        //get x and Y co-ordinates and log it as info. 
        float x1 = e1.getX();
        float y1 = e1.getY();
        float x2 = e2.getX();
        float y2 = e2.getY();       
        Log.i("Scroll_Gesture", "Scrolled from: (" + x1 + "," + y1 + " to " + x2 +"," + y2 + ")");

        mp = MediaPlayer.create(this, R.raw.scroll_success);        
        mp.start();

       //start success page
        Intent intent = new Intent(this, ScrollSuccess.class);
        startActivity(intent); 
        return false;
    }
“onScroll()”将被多次调用。 它将被调用多少次取决于用户执行的滚动操作

如果希望代码块在每个滚动动作开始时只运行一次,则必须添加一个条件,如下所示:

   float scrollstartX1, scrollStartY1;

   public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX,
           float distanceY) {
    // get x and Y co-ordinates and log it as info.
       if (scrollstartX1 != e1.getX() || scrollStartY1 != e1.getY()) {
           scrollstartX1 = e1.getX();
           scrollStartY1 = e1.getY();
               //***************************************
           //code run only once for a scroll action...
               //****************************************
       }
           float x2 = e2.getX();
           float y2 = e2.getY();
           Log.i("Scroll_Gesture", "Scrolled from: (" + scrollstartX1 + "," + scrollStartY1 + " to "
                   + x2 + "," + y2 + ")");

           mp = MediaPlayer.create(this, R.raw.scroll_success);
           mp.start();

           // start success page
           Intent intent = new Intent(this, ScrollSuccess.class);
           startActivity(intent);

       return false;
   }

@朱迪丝…你有没有得到答案?非常感谢您的帮助。谢谢