Gesture detection and ScrollView issue

后端 未结 3 1075
春和景丽
春和景丽 2020-12-01 02:26

I\'m trying to create a layout with a ViewFlipper containing ScrollViews. The idea is to detect horizontal swipes to move to previous/next ScrollView. Moreover, the ScrollVi

3条回答
  •  半阙折子戏
    2020-12-01 02:31

    I had to add

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

    in my Activity.

提交回复
热议问题