无法在 ButterKnife 中使用 findById

Unable to use findById in ButterKnife

我在使用 ButterKnife 时遇到此错误:

error: cannot find symbol method findById(View,int)

TextView tvHeaderTextOne = ButterKnife.findById(headerView, R.id.tv_header_text_one);

更新到 Butterknife 10 后出现无法 findById 的错误。

定义道具

@BindView( R.id.tv_header_text_one)
protected TextView tx ;

在 OnCreate 方法中:

ButterKnife.bind(this,yourview);