在父类setContentView()方法中调用ButterKnife绑定View失败,使用时提示空指针异常。
代码:BaseActivity.java
@BindView(R.id.toolbar_title)
TextView tvToolbarTitle;
@Override
public void setContentView(@LayoutRes int layoutResID) {
super.setContentView(layoutResID);
ButterKnife.bind(this);
tvToolbarTitle.setText("标题");
}
Butterknife log:
这个类是在module还是在library,如果是前者,看下在gradle中配置是否正确,如果是后者,绑定用的是另外一种方式。 如果都不是,只能建议你去看下api