在更新到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堆和分辨率设置。


当前回答

面对类似的问题,尝试上述解决方案,它没有工作。

如果上述建议不能解决问题,我想提出一个简单的解决方案。

解决方案-尝试清理系统中的空间。我的问题是,当我试图启动模拟器时,只剩下1GB的空间,在清理空间后得到8GB,并能够启动模拟器。

其他回答

我试着用一个新的系统映像编辑AVD,瞧!它工作! 我有Nexus 5X API 24

请检查磁盘上的空闲空间。我也遇到过同样的问题,最后我需要腾出空间来解决这个问题。

Android编程的大家好… 我有同样的问题安卓模拟器被杀,但摆脱了这个问题成功和安卓模拟器运行正常通过做以下事情…

Firstly, I updated my SDKs from android studio SDK manager but issue does not resolved. Secondly, I have faced problems regarding my computer C Drive space where path of SDK folder is located. My C Drive space is running very low and does not allow me to update SDK from android studio showing me error and my Android emulator gets killed then I moved my SDK folder from C Drive to another drive D which have huge space available, then Changed my sdk folder path form android studio and restart it and matter resolved successfully. Cheers... Best Regards

Qemu-system-x86_64在Windows任务管理器上杀死这个进程,即使关闭模拟器,它也会保持运行。此进程将导致新进程在启动时终止。进程名可能不同,这取决于您使用的系统映像 以下可能的进程名

 - qemu-system-i386.exe
 - qemu-system-aarch64
 - qemu-system-armel
 - qemu-system-x86_64

杀死他们中的一个或者全部解决问题

如果使用Mac Intel酷睿i7,请选择“x86”作为ABI。在“Virtual Device Configuration”界面中,有三个页签:

推荐 x86图片 其他图像

选项卡1和2很可能具有适合您计算机的ABI。但我曾经错误地去了Other Images,选择了arm64-v8a的ABI。

这个答案类似于https://stackoverflow.com/a/66059850/2848676,除了它是针对运行英特尔而不是苹果硅(M1)芯片的Mac。

这两个答案的概括是确保您选择的ABI与您的计算机兼容。例如,在我的“Other Images”选项卡上,它明确地警告我“考虑在x86主机上使用x86系统映像以获得更好的模拟性能”,但不幸的是,直到后来我试图解决这个问题时才看到这个警告。