我正在尝试在Eclipse Juno中构建sipdroid。我已经进入属性并将项目设置为platform 2.2/ API 8,进入Java Build Path并勾选了Android 2.2框。但是我仍然得到了9个这样的构建错误。有人遇到过这个问题吗?
InCallScreen类型的方法onAccuracyChanged(Sensor,int)必须重写超类方法
类型为InCallScreen的方法onSensorChanged(SensorEvent)必须重写超类方法
VideoCamera类型的方法onLongClick(视图)必须重写超类方法
类型为VideoCamera的方法onError(MediaPlayer,int,int)必须重写超类方法
VideoCamera类型的方法onClick(视图)必须重写超类方法
设置类型的方法onClick(DialogInterface,int)必须重写超类方法
Sipdroid类型的方法onDismiss(DialogInterface)必须重写超类方法
PlainDatagramSocketImpl类型的方法getOption(int)必须重写超类方法
PlainDatagramSocketImpl类型的方法setOption(int,Object)必须重写超类方法
发布于 2012-08-24 06:52:49
您可能正在使用java 5进行编译,这不允许使用
@Override
在接口实现上。
https://stackoverflow.com/questions/12101089
复制相似问题