private void enterReorderMode() {
    if (swipeExecuteBehavior.isInProgress()) {
      swipeExecuteBehavior.endExecute();
    }
    this.listView.addBehavior(reorderBehavior);
    this.listView.removeBehavior(swipeExecuteBehavior);
    this.listView.removeBehavior(selectionBehavior);

    this.adapter.enterReorderMode();

    if (isWideScreen) {
      adapter.setShowCurrent(false);
    }

    this.changeMenuIsEnabled(false);

    this.actionModeTitleView.setText(this.reorderModeHeader);
    this.getActivity().startActionMode(new ReorderModeCallback());
  }