build.gradle(:app)
//BindView
implementation 'com.jakewharton:butterknife:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
onCreate()中加入
//BindView
private Unbinder unbinder = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
......
//BindView
unbinder = ButterKnife.bind(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
//BindView
if (unbinder != null) {
unbinder.unbind();
}
}
使用
@BindView(R.id.id_tv_show)
TextView textView;