Android 方法覆盖

发布于 2024-11-08 12:59:26 字数 260 浏览 0 评论 0原文

我正在将我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鱼忆七猫命九 2024-11-15 12:59:26

1.5 JDK 不支持接口上的@Override。使用 1.6 JDK。

The 1.5 JDK doesn't support @Override on interfaces. Use the 1.6 JDK.

野の 2024-11-15 12:59:26

你好
在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文