分享

java.lang.IllegalStateException: Bindings already cleared. 2021-01-28

 小世界的野孩子 2021-12-14

java.lang.IllegalStateException: Bindings already cleared.

使用 ButterKnife 从 7.x.x 升级到 10.x.x 后,某个 viewPager 中的
的 Fragment 方法报以下错误:

java.lang.IllegalStateException: Bindings already cleared.

查看代码git历史,是从

 ButterKnife.unbind(this);

变为了

  unbinder.unbind();

然后发现,

父类:

@Override
    public void onDestroyView() {
        super.onDestroyView();
        unbinder.unbind();
    }

子类

  @Override
    public void onDestroyView() {
        super.onDestroyView();
        unbinder.unbind();
    }

中都调用了 unbinder.unbind();
猜测是因为父类已经执行过unbind()了,子类再去执行unbind()引发的异常。

所以跳进 unbind() 查看源码:

public interface Unbinder {
  @UiThread void unbind();

  Unbinder EMPTY = () -> { };
}

选中unbind,然后用快捷键 option+command+B,跳到实现中:

@Override
  @CallSuper
  public void unbind() {
    AbsWebViewActivity target = this.target;
    if (target == null) throw new IllegalStateException("Bindings already cleared.");
    this.target = null;

    target.mWebView = null;
    target.tvLoadFail = null;
    target.btnLoadAgain = null;
    target.llLoadError = null;
    target.llProgressbar = null;
  }

果然发现了new IllegalStateException("Bindings already cleared.");

所以子类删除 unbinder.unbind()就可以了,子类修改如下:

  @Override
    public void onDestroyView() {
        super.onDestroyView();
        // unbinder.unbind();
    }

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多