导入 GreenDroid 时出现问题
我正在尝试导入并运行 GreenDroid 项目: https://github.com/cyrilmottier/GreenDroid
但出现以下错误:
The type java.lang.Enum cannot be resolved. It is indirectly referenced from required .class files ActionBarItem.java /GreenDroid/GreenDroid/src/greendroid/widget line 1 Java Problem
不知道如何解决。 IDE 说这是构建路径问题。
I'm trying to import and run the GreenDroid project: https://github.com/cyrilmottier/GreenDroid
But get the following error:
The type java.lang.Enum cannot be resolved. It is indirectly referenced from required .class files ActionBarItem.java /GreenDroid/GreenDroid/src/greendroid/widget line 1 Java Problem
Not sure how to resolve. IDE is saying it is a build path issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在IDE中,Java编译器是否设置为Java 1.5或更高版本?如果编译器设置为 1.3,枚举将不起作用。
在 Eclipse 中,该设置位于“构建路径/Java 编译器/JDK 合规性”下。
In the IDE, is Java compiler set to Java 1.5 or above? Enums won't work if the compiler is set to 1.3.
In Eclipse, the setting is under Build Path/Java Compiler/JDK Compliance.