Android 应用程序的全局菜单

发布于 2024-10-08 00:04:25 字数 184 浏览 2 评论 0原文

我正在构建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若有似无的小暗淡 2024-10-15 00:04:25

就像 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)

:)

长伴 2024-10-15 00:04:25

创建一个扩展 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文