黄油刀@BindView(R ...)资源错误

时间:2018-09-02 02:32:02

标签: java android butterknife

我被要求在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文件之一吗?

0 个答案:

没有答案