I wonder how to disable action bar menu opening on drag.
@Override
public void onResume() {
    super.onResume();
    if(getActivity() != null)
        ((AppCompatActivity)getActivity()).getSupportActionBar().hide();
}
@Override
public void onStop() {
    super.onStop();
    if(getActivity() != null)
        ((AppCompatActivity)getActivity()).getSupportActionBar().show();
}
I used this code to hide the bar in my fragment, but it still can be opened by dragging the left side of the screen.