打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

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

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();
    }
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
java.lang.IllegalStateException: Web app root system property already set to different value
纠结了半天的 java.lang.IllegalStateException: getOutputStream() has already been called for this response
java.lang.IllegalStateException:Cannot forward after response has been committed
java.lang.IllegalStateException: attempt to re-open an already-closed object
android开发中出现的错误集(不断更新)
java.lang.IllegalStateException: circular reference error Gson循环引用
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服