Android 方法覆盖
我正在将我的 Android 开发环境从 Mac 切换到新的 Ubuntu 11.04 系统。一切都正确构建,在 Mac 上没有错误,但在签入和签出 github 后,我在所有 @override onClick 代码上收到错误,抱怨我应该删除 @Override。这有道理吗?
这是错误: new View.OnClickListener(){} 类型的 onClick(View) 方法必须重写超类方法
我在 Runnable 的 run 方法上也遇到了非常类似的错误。
I am in the process of switching my android development environment from my Mac to a new Ubuntu 11.04 system. Everything builds correctly with no errors on the mac, but after checking into and out of github I get an error on all of the @override onClick code complaining that I should remove the @Override. Does this make sense?
Here is error:
The method onClick(View) of type new View.OnClickListener(){} must override a superclass method
I get a very similar error on the run method of a Runnable as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1.5 JDK 不支持接口上的@Override。使用 1.6 JDK。
The 1.5 JDK doesn't support @Override on interfaces. Use the 1.6 JDK.
你好
在 Eclipse 中,按照以下说明进行操作:
转到:项目 ==> 属性 ==> Java编译器 ==> 配置工作区设置(位于窗口右上角)==> 编译器合规级别:选择1.6 == >申请然后确定
hi
in your Eclipse , follow those instructions :
goto : Project ==> Properties ==> Java Compiler ==> Configure Workspace Settings ( on top Right of the Window ) ==> Compiler Compliance level : Choose 1.6 == > Apply and then OK