Android ViewFlipper not flipping

前端 未结 2 1517
说谎
说谎 2020-12-09 06:31

I have a ViewFlipper which should react to a fling gesture, but it does not.

Activity

@Override
public void onCreate(Bundle savedInstanceState) {
            


        
2条回答
  •  一向
    一向 (楼主)
    2020-12-09 07:17

    This is my xml code used.

      
        
    
        
        
        
        
        
    
    

    Override dispatchTouchEvent instead of onTouchEvent

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

    This works fine :) Scroll View and flipper both works fine.

提交回复
热议问题