在ScrollView的父级中未检测到水平滑动

时间:2011-11-30 13:20:12

标签: android scrollview gesture

  

可能重复:
  Gesture detection and ScrollView issue

编辑:问题,完整代码询问{​​{3}}。


我有一个孩子的布局。我设置了一个手势监听器来检测布局上的水平滑动。当布局是LinearLayout时,正确检测到滑动,但是当它是ScrollView时,它不是。我猜这个手势首先被ScrollView检测到,并没有传播到它的优先级,但我不知道如何解决它。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:orientation="vertical">
    <ImageView android:layout_width="320dp" android:layout_height="30dp"
            android:src="@drawable/header"/>
    <ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
        <!-- stuff -->
    </ScrollView>
</LinearLayout>

我将以下监听器设置为我的布局:

class ProductGestureListener extends SimpleOnGestureListener {

    @Override
    public boolean onDown(MotionEvent e) {
        return true;
    }

    @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {

        final int SWIPE_MIN_DISTANCE = 120;
        final int SWIPE_MAX_OFF_PATH = 250;
        final int SWIPE_THRESHOLD_VELOCITY = 200;            

        try {
            if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH)
                return false;
            if(e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {                   
                // show previous item
            }  else if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
               // show next item
            }
        } catch (Exception e) {
        }           
        return false;
    }
}

3 个答案:

答案 0 :(得分:18)

如果您希望整个Activity可以横向滑动,则可以将以下内容用作Activity的超类:

public abstract class SwipeActivity extends Activity {
   private static final int SWIPE_MIN_DISTANCE = 120;
   private static final int SWIPE_MAX_OFF_PATH = 250;
   private static final int SWIPE_THRESHOLD_VELOCITY = 200;
   private GestureDetector gestureDetector;

   @Override
   protected void onCreate( Bundle savedInstanceState ) {
      super.onCreate( savedInstanceState );
      gestureDetector = new GestureDetector( new SwipeDetector() );
   }

   private class SwipeDetector extends SimpleOnGestureListener {
      @Override
      public boolean onFling( MotionEvent e1, MotionEvent e2, float velocityX, float velocityY ) {

         // Check movement along the Y-axis. If it exceeds SWIPE_MAX_OFF_PATH,
         // then dismiss the swipe.
         if( Math.abs( e1.getY() - e2.getY() ) > SWIPE_MAX_OFF_PATH )
            return false;

         // Swipe from right to left.
         // The swipe needs to exceed a certain distance (SWIPE_MIN_DISTANCE)
         // and a certain velocity (SWIPE_THRESHOLD_VELOCITY).
         if( e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs( velocityX ) > SWIPE_THRESHOLD_VELOCITY ) {
            next();
            return true;
         }

         // Swipe from left to right.
         // The swipe needs to exceed a certain distance (SWIPE_MIN_DISTANCE)
         // and a certain velocity (SWIPE_THRESHOLD_VELOCITY).
         if( e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs( velocityX ) > SWIPE_THRESHOLD_VELOCITY ) {
            previous();
            return true;
         }

         return false;
      }
   }

   @Override
   public boolean dispatchTouchEvent( MotionEvent ev ) {
      // TouchEvent dispatcher.
      if( gestureDetector != null ) {
         if( gestureDetector.onTouchEvent( ev ) )
            // If the gestureDetector handles the event, a swipe has been
            // executed and no more needs to be done.
            return true;
      }
      return super.dispatchTouchEvent( ev );
   }

   @Override
   public boolean onTouchEvent( MotionEvent event ) {
      return gestureDetector.onTouchEvent( event );
   }

   protected abstract void previous();

   protected abstract void next();
}

您需要做的就是在扩展next()后实施previous()SwipeActivity方法。

答案 1 :(得分:10)

我必须添加

@Override
public boolean dispatchTouchEvent(MotionEvent ev){
    super.dispatchTouchEvent(ev);    
    return productGestureDetector.onTouchEvent(ev); 
}

在您的活动类中添加此方法,该活动类使用swiper,就像onCreate方法一样。

答案 2 :(得分:1)

android的事件序列是这个

用户执行某些操作 - &GT;动作传递给父母 - &gt;如果父处理动作,则消耗该动作 - &gt;否则将动作传递给孩子 - &gt;如果子处理动作,则消耗该动作 - &gt;否则动作传递

此过程一直持续到操作被消耗或所有孩子都已收到操作,但没有人处理过。

要在滚动视图中检测水平滑动并将其传递给子节点而不是使用它的滚动视图,则需要拦截该事件。

即 用户执行一些操作 - &GT;动作传递给父母 - &gt;如果水平滑动传递给孩子 - &GT;否则滚动视图处理动作

要执行此操作(如此顶部答案中所示:HorizontalScrollView within ScrollView Touch Handling)在滚动视图中使用手势检测器,其唯一目的是检测手势是水平还是垂直。

如果手势是水平的,那么我们想拦截事件并将其传递给孩子。

您需要创建自定义滚动视图,然后在那里实现手势检测器并从onInterceptTouch()调用它。通过在此处返回true或false,我们可以说是否在此处使用事件,您需要的一切都在上面的链接中。