android开发中,使用eclipse开发JAVA项目的时候,@Override注释会出现 The method *** of type ** must override a superclass method 的错误提示。
解决方法:
- 删除@Override
- 设置 complier compliance level为6.0
- 升级Java SDK到1.6以上
android开发中,使用eclipse开发JAVA项目的时候,@Override注释会出现 The method *** of type ** must override a superclass method 的错误提示。
解决方法: