我被要求在FindViewById上的项目中使用黄油刀。我的findViewById
没问题,但是当我尝试将所有的@Bind(R...)
转换成黄油刀时,都会出现错误can not resolve symbol R
我已经更新了Gradle(module)依赖项以包含
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
////////////////////////////
@BindView(R.id.description_tv) TextView mDescriptionTv;
@BindView(R.id.description_label) TextView mIngredients;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_detail);
ButterKnife.bind(this);
我还需要添加其他东西到gradle文件之一吗?