我的 Android 应用程序中的菜单不起作用
我按照以下链接创建了一个测试应用程序来创建菜单: http://developer.android.com/guide/topics/ui/menus.html
它对我有用。但是,当我将其添加到我的应用程序(即谷歌地图应用程序)时,菜单不起作用。我怀疑这是因为在我创建的示例中我扩展了 Activity 类,但在我的应用程序中我扩展了 MapActivity 类。 有人可以解释我该怎么做吗?
I followed the following link to create a test application to create menu:
http://developer.android.com/guide/topics/ui/menus.html
It worked for me. However, when I added it to my app which is a google map app, menu is not working. I suspect its because the in the sample I created I extended Activity class but in my app I have extended MapActivity class.
Can someone explain how can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
菜单对于 MapActivity 的工作方式与对于 Activity 类的工作方式相同。您只需要重写 onCreateOptionsMenu 方法。仔细检查您的资源名称 R.menu.mapmenu 等。
Menu is working same for MapActivity as for Activity class. You just need to override onCreateOptionsMenu method. Doublecheck your resource name R.menu.mapmenu etc.