在android模拟器中禁用menubutton

问题描述 投票:8回答:4

在为ICS开发应用程序时 - 操作栏看起来会有所不同,具体取决于设备上是否存在物理menubutton。

例如,如果没有,则在操作栏中显示虚拟按钮。

是否可以通过在模拟器中以某种方式禁用它来模拟没有menubutton的设备?

android android-actionbar android-optionsmenu
4个回答
10
投票

有一个选项“硬件后门/主页键”。指定选项并在创建虚拟设备时将其设置为“no”。


6
投票

使用更新的SDK工具(本答案中的R22),AVD管理器编辑器不再在UI上公开这些选项。您必须手动编辑AVD的config.ini并更改以下密钥

hw.mainKeys=yes

hw.mainKeys=no


2
投票

正如@Yenchi所说,打勾'hw.mainKeys'。虚拟设备看起来像第二张图片。

enter image description here enter image description here


1
投票

在DiskAVD Manager, Clickconfig.inioption, Edit thehw.mainKeysfile from the opened directory, findyes上打开config and set it toShow

hw.mainKeys = yes

保存文件并重新启动AVD。

有关详细信息,请参阅下面的屏幕截图enter image description here enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.