Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的三星 Galaxy s2 手机上运行我的 android 应用程序。手机有一个物理菜单按钮,如果我点击它,我会得到一个菜单重叠,其中有 1 个选项,默认情况下显示为“设置”。有些手机没有物理菜单按钮。为此,我在应用程序中制作了一个按钮,以显示菜单。
但是我不知道如何使用 java 代码显示菜单。
有谁知道怎么做?
谢谢。
只需调用openOptionsMenu();,它将以编程方式打开选项菜单。
openOptionsMenu();
我想您不能在onCreate或其他类似的方法中执行此操作,其中尚未创建选项菜单。
onCreate
参考安卓官方文档。