设置Netbeans以识别在Editor中生成的AndroidAnnotations类

时间:2013-06-13 17:22:48

标签: android netbeans android-annotations

我在Netbeans中创建了一个Android项目(使用nbandroid插件),我在libs中添加了AndroidAnnotations jar,我已经创建了custom_rules.xml,如下所述:https://github.com/excilys/androidannotations/wiki/Building-Project-Ant。该项目编译并运行没有问题。但是编辑器无法识别生成的类,因此没有像MyActivity_这样的增强类的代码完成。此外,编辑器显示编译错误,但编译或运行时没有错误。

如何配置Netbeans以识别生成的类?

1 个答案:

答案 0 :(得分:0)

好吧,我终于解决了这个问题:

只需编辑custom_rules.xml:

替换

<property name="generated.dir" value=".apt_generated" />

<property name="generated.dir" value="gen" />

现在Netbeans会看到AndroidAnnotations生成的源代码与任何其他Android生成的文件一样。

不要忘记清洁&amp; build用于在新位置生成文件。