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);
}