2

ユーザーが画面のグリッド ビューをスワイプしたときに、いくつかの機能を実装しようとしています。次のようにSimpleOnGestureListenerを使用してみました:

    class MyGestureDetector extends SimpleOnGestureListener {
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
        try {
            if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH)
                return false;
            // right to left swipe
            if(e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {                      
                Log.w(null,"Right to Left swipe detected");

                return true;
            }  else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {                         
                Log.w(null,"Left to Right swipe detected");

                return true;
            }
        } catch (Exception e) {
            // nothing
        }
        return false;
    }
}

ただし、モーション イベントを検出できません。デバッグを試みたところ、イベント e1 が null として渡されることがわかりました。誰か助けてくれませんか?

4

0 に答える 0