public void resetPopupWindow() {
   controllerFloat.reset();
 }
 public boolean isPopupWindowPlaying() {
   return controllerFloat.isPlaying();
 }
  public void togglePopupWindow() {
    if (controllerFloat.isPlaying()) return;

    controllerFloat.startAnimation(controllerFloat.isShown() ? animOut : animIn);
  }
  public boolean isPopupWindowShown() {
    if (controllerFloat == null) return false;

    return controllerFloat.isShown() || controllerFloat.isPlaying();
  }