无法将 AVD 管理器中启动的虚拟机设置为全屏

问题描述 投票:0回答:1

许多有关 AVD 管理器及其 Android 模拟器的旧帖子建议可以使用 Alt+Enter 将设备屏幕设置为全屏。就我而言 - 它不起作用。 F11 或其他快捷键也不起作用。总而言之,我想知道的是,AVD管理器模拟器是否支持这样的东西?如果是,如何解决,如果不是,是否有解决方法。目标设备是触摸屏显示器,因此全屏运行是最重要的。额外问题 - 如果设备屏幕处于全屏模式,是否可以与主窗口分开显示带有控制图标(用于控制旋转、音量、硬件键等)的工具栏?

android android-studio android-emulator fullscreen android-virtual-device
1个回答
0
投票

我知道这是旧线程,但是...... 我已经成功做到了这一点! 🥳

这里有两种方法:

  1. 使用无边界游戏软件

    当模拟器运行时,使用它来强制全屏显示。就这么简单

  2. 命令行

    这是一个有效的简单脚本:

@echo off

REM Setting the name of the virtual machine
set AVD_NAME=Pixel_2_API_33

echo Starting the Android emulator...
REM Command to start the emulator in fullscreen mode
echo Starting the emulator in fullscreen mode...
start "" /MAX cmd /c "cd /d %LOCALAPPDATA%\Android\Sdk\emulator && emulator.exe -avd %AVD_NAME% -scale 0.25"

echo Android emulator started successfully.
echo Closing the script in 5 seconds...
timeout /t 5 /nobreak > nul
exit

希望有帮助!

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