ButterKnife Fragment null

来源:互联网 发布:行业分析 知乎 编辑:程序博客网 时间:2024/06/03 16:08

使用Butternife7.0.1版本的一直比较稳定


compile 'com.jakewharton:butterknife:7.0.1'

但是最近出现了再Fragment中是null的情况,查看:http://jakewharton.github.io/butterknife,里面的

BINDING RESET

部分提到Fragment的生命周期与Activity不同,让使用Unbinder,可是7.0.1版本中没有这个类,参考:http://www.jianshu.com/p/9ad21e548b69
使用8.5.1版本,发现绑定都需要从@Bind换成@BindView.
compile 'com.jakewharton:butterknife:8.5.1'annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

@BindView(R.id.tv_team_left)TextView tvTeamLeft;@BindView(R.id.tv_team_right)TextView tvTeamRight;

在ButterKnife.bind的时候要改成

unbinder = ButterKnife.bind(this, view);

在onDestroy中:

unbinder.unbind();


但是还是没解决我的问题