标签: android butterknife
我开始使用Butterknife,但现在我面临一个问题,我的局部变量声明,即我被迫使用Butterkinfe.findbyid(view,id)。有没有办法在这里使用注释
例如:
private void setText(){ TextView textView=Butterknife.findbyid(view,R.id.xyz); }
正在寻找@Bind(R.id.xyz)TextView textview;
答案 0 :(得分:12)
Bind annotation仅适用于字段 - 如果您使用的是本地变量,则ButterKnife.findById()是正确的方法。
ButterKnife.findById()