我正在尝试在android中进行注释处理 我的处理器: -
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface FirstAnotation {
int rollno();
}
我的示例Model类: -
@FirstAnotation(rollno = 20120)
public class Model {
String name;
}
每当我在Model类中更改rollno时,我都必须重新生成项目以反映生成的类中的更改。
为什么会这样?
如果我们不得不一次又一次地重建项目那么 butterknife 如何运作?