Android 应用程序的全局菜单
我正在构建一个 Android 应用程序。我的一些类扩展了 Activity,一些类扩展了 ListActivity。有没有办法可以构建一个可用于生成菜单的全局菜单类。
我已经知道文档中建议的方法,即使用活动扩展基本菜单类,然后使用该类扩展所有其他活动。但就我而言,我的几个类扩展了 listactivity。
提前致谢。
I am building a an Android Application. Some of my classes extends Activity and some extends ListActivity. Is there a way I can build a global menu class which can be used to generate menu.
I already know the way suggested in documentation of extending a base menu class with activity and then using that class to extend all other activities. But in my case couple of my classes extend listactivity.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就像 Mayra 所说,您不需要扩展 ListActivity 来在您的活动中拥有一个列表。 :)
查看另一个 stackoverflow 问题,它展示了如何在没有 listactivity 的情况下创建列表视图。 如何在没有 ListActivity 的情况下实现 ListView? (仅使用 Activity)
:)
Like Mayra says, you don't NEED to extend ListActivity to have a list in your activity. :)
Check out this other stackoverflow question that shows how to make a listview without a listactivity. How can I implement a ListView without ListActivity? (use only Activity)
:)
创建一个扩展 Activity 的类,并将 oncreateoptionsmenu() 函数放入其中。
然后让所有其他类扩展这个类..
与 listactivity 类似
create a class which extends Activity and put the oncreateoptionsmenu() function in that.
then make every other class extend this one..
similar for listactivity