如何在 Android 模拟器中退出全屏模式
有时我不小心按了组合键,使 Android AVD 模拟器进入全屏,并且我不知道如何在不重新启动模拟器的情况下退出它。我所能做的就是通过 Alt+Tab 来切换应用程序。
Sometimes I accidentally hit a key combination to make the Android AVD emulator go into full screen, and I couldn't figure out how to get out of it without restarting the emulator. All I could do to escape was Alt+Tab to toggle applications.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Alt+Enter 是在模拟器中切换全屏模式的键盘快捷键,只需再次执行即可退出全屏。
仅供参考,以下是其他一些模拟器键盘快捷键:
来源:http://www. android.encke.net/android-emulator-tutorial.html#Keyboard-Control
Alt+Enter is the keyboard shortcut to toggle full screen mode in the emulator, just do it again to exit full screen.
FYI, here are some other emulator keyboard shortcuts:
Source: http://www.android.encke.net/android-emulator-tutorial.html#Keyboard-Control
以及更改 Android 模拟器的窗口大小
将参数
-scale
附加到模拟器启动参数。在 Eclipse 中,将其放在运行配置中的“附加模拟器命令行选项”字段中。允许的比例因子是 0.1 到 3 之间的比例因子,但最常见的可能是
-scale 0.5
。And For Changing the window size of the Android Emulator
Append the parameter
-scale <scale factor>
to the Emulator launch parameters. In eclipse, put it in the field "Additional Emulator Command Line Options" within the Run Configuration.Allowed scale factors are those between 0.1 and 3, although the most common will probably be
-scale 0.5
.在 Android Studio 3.1.2 上,将鼠标移至屏幕顶部,菜单应该会显示。选择查看、退出演示/无干扰/全屏模式。
On Android Studio 3.1.2, move your mouse to top of the screen and the menu should show up. Select View, Exit presentation/distraction-free/fullscreen mode.