在更新到Android Studio 2后,当我试图运行我的应用程序并选择一个模拟器时,我等待模拟器启动,它突然被杀死。我可以看到模拟器进程几分钟,但从来没有GUI。在Android studio中,我得到了错误

android studio Error while waiting for the device: The emulator process for AVD was killed

即使我在Android Studio之外运行模拟器也会发生这种情况。我试用了Android 6和基于Android 4.4的模拟器。 在Windows 7 x64 PC上运行。类似于另一个StackOverflow帖子被关闭。我尝试了各种ram、VM堆和分辨率设置。


当前回答

我把图形换成了软件,已经安装了英特尔x86模拟器,并重新启动了PC。毫无效果。这是Hyper-V问题。我已经关闭了VMWare。我打开它,重新启动PC和模拟器工作。所以请试试Hyper-V。

其他回答

我也有同样的问题。 我改变了ANDROID_HOME路径的环境变量。 然后我复制了“avd”文件夹,其中模拟器安装到“sdk”文件夹(ANDROID_HOME路径)。 ***在avd管理器中单击“显示在磁盘上”可以找到“avd”文件夹。 我重新启动了模拟器,现在运行得很好。

在尝试了所有建议的解决方案和其他来源2天后。没有一个对我有效。事实证明,我需要在windows操作系统上使用添加功能工具启用windows虚拟化支持。刚刚到达你的控制面板,搜索“添加功能”,见附图。愿一切都好!

我也有这样的问题。

fix:

1. 为Android VDM选择一个旧版本(系统镜像)-首先,我使用了28版本(在我的情况下是OREO),然后我切换到旧版本,到25(NOUGAT)。 2. 将“图形”更改为“软件”。

我试了上面所有的答案,没有一个管用。我最终通过以下方法解决了这个问题:

开放SDK管理器 在SDK平台下,取消选中所有选中的包,点击ok 打开AVD管理器,点击虚拟设备旁边的下载按钮 启动设备,这应该能够解决问题 重新打开SDK管理器并重新检查您想要的平台

这就是! !希望这对你也有帮助,干杯

这个错误非常普遍,这种症状可能是由于一百万个完全不同的问题中的任何一个造成的。 你要做的是找到更多关于正在发生的事情的信息,这样你就不会看起来像一只瞎鸡在啄食令人作呕的石头。 因此,让我们得到调试步骤:

first thing is to find the logs of Android studio. In doubt, stackoverflow already has a section to help you How to find the logs on android studio?. The text file should be named: "idea.log". You can open it with notepad, but only open it after android studio is closed (in windows 10). There will be a lot of events inside. Search by "manager.EmulatorProcessHandler" and the last date that you had the error. A good trick to facilitate your life, after having found the log file, is to close Android studio: delete the log file; reopen android studio and retry to open the emulator. The log file will be recreated with a lot less history and so it will be so much easier to search. In my case, i found: manager.EmulatorProcessHandler - Emulator: emulator: ERROR: Another emulator instance is running. Please close it or run all emulators with -read-only flag.. Given that, it is easy to solve. I just had to open a process manager and terminate the emu process that didn't correctly close for some unknown reason. Of course, in our case the log will be completely different. But now you have a clue of the hidden criminal.