Android, disable the swiping to interact with SlidingPaneLayout

后端 未结 5 2112
無奈伤痛
無奈伤痛 2020-12-28 18:57

I need to disable swiping to open/close SlidingPaneLayout because my main view is a map. I\'ll open/close it using a button.

5条回答
  •  长情又很酷
    2020-12-28 19:52

    If you want to disable the 'drag to open' event and enable user input once the layout is opened, you can use this

    @Override
    public boolean onInterceptTouchEvent(MotionEvent arg0) {
    
        if(!isOpen()) return false;
    
        return super.onInterceptTouchEvent(arg0);
    }  
    

提交回复
热议问题