@Override
  public boolean onInterceptMoveLeft(float origX, float origY) {
    if (!mCallback.isFragmentActive(this)) {
      // we're not in the foreground; don't intercept any touches
      return false;
    }

    return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
  }