Android Studio Emulator未加载Windows 10

use*_*418 9 android emulation android-emulator android-studio windows-10

我在Windows 10上安装了android studio,包含了android api 22的所有软件包.当我运行模拟器时,我收到以下消息

C:\Users\admin\AppData\Local\Android\sdk\tools\emulator.exe -avd foo -netspeed full -netdelay none
emulator: device fd:928
HAX is working and emulator runs in fast virt mode
Run Code Online (Sandbox Code Playgroud)

我可以在任务管理器中看到模拟器,但实际上并没有加载.

我一直在寻找为什么它没有加载的答案,我已经确保所有ram设置都是正确的,但我不明白为什么模拟器不会加载.

谢谢

Joe*_*aly 10

HAXM,英特尔Android虚拟化技术与Hyper-V不兼容.关闭Hyper-V然后再试一次.如果已安装带有Windows Phone工具的Visual Studio,则通常会安装Hyper-V.

或者从管理员命令提示符运行以下命令.请注意,要获取admin cmd提示,请右键单击Windows图标,然后单击"命令提示符(管理员)".

要关闭Hyper-V,请运行以下命令:bcdedit/set hypervisorlaunchtype off然后重新启动

要重新打开Hyper-V,请运行以下命令:bcdedit/set hypervisorlaunchtype auto然后重新启动

您可以在服务菜单中关闭Hyper-V(在搜索内容中键入"服务"),也可以使用"服务"菜单将其重新打开.即使可能没有必要,我仍然会以这种方式重新启动.

关于此的博客文章 - http://www.devfish.net/post/2015/08/18/error-x86-emulation-currently-requires-hardware-acceleration-android-on-windows.aspx

希利在坦帕