Appname(XXX) 类型的 onOptionsitemSelected(MenuItem) 必须重写超类方法
我正在尝试在 Android 中创建一个简单的应用程序。在我的一个模块中,当我单击 Android 模拟器中的菜单按钮时,我必须调用出现在屏幕下方的选项菜单。
由于我必须调用一个新活动,因此当点击选项菜单中的一个菜单项时,我将 @Override
放在方法 onOptionsSelectedItem(MenuItem menuitem)
之前,以便实现我自己的定义而不是调用父活动。
一旦我将注释@Override
放在onOptionsSelectedItem(MenuItem menuitem)
方法之前,它就会显示以下错误......(在编译时本身)
方法onOptionsitemSelected(
(MyClass) 必须重写超类方法....SingleShooterRecordShots
类型的 MenuItem)
I am try'g to create an Simple application in Android. In one of my module I have to call the options menu that appears underneath the screen, when I click the menu button in the Android emulator.
Since I have to invoke a new activity, when one of my menu items in option menu is tapped, I put @Override
before the method onOptionsSelectedItem(MenuItem menuitem)
in order to implement my own definition instead of calling the parent activity.
Once I put the annotation @Override
before onOptionsSelectedItem(MenuItem menuitem)
method, its showing the following error...(in compile time itself)
The method onOptionsitemSelected(MenuItem)
of type SingleShooterRecordShots
(MyClass) must override a superclass method....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个(更一般的)问题有相同的答案: 将项目导入 Eclipse 后出现“必须重写超类方法”错误
This (more general) question has the same answer: 'Must Override a Superclass Method' Errors after importing a project into Eclipse