@Override
  public void setCompoundDrawablesRelative(
      Drawable start, Drawable top, Drawable end, Drawable bottom) {
    super.setCompoundDrawablesRelative(start, top, end, bottom);

    startIfAnimatable(start);
    startIfAnimatable(top);
    startIfAnimatable(end);
    startIfAnimatable(bottom);
  }