Android Studio中模拟器中关于VT-x is disabled in BIOS错误的解决方案

首先给出我遇到这个问题时找到的解决答案:http://stackoverflow.com/questions/26355645/error-in-launching-avd-with-amd-processor
有时候在Android Studio中启动一个模拟器去运行程序的时候,会出现下面的错误提示:“Intel HAXM is required to run this AVD,VT-x is disabled in BIOS”.下面是解决方式:

  1. 首先在SDK Manager中检查是否安装Download Intel x86 Emulator Accelerator (HAXM installer),如果没有安装,则在SDK Manager中下载安装Download Intel x86 Emulator Accelerator (HAXM installer)。
  2. 到SDK目录下(一般是C:\Users\Administrator\AppData\Local\Android\sdk),在这个目录下沿着 extras > intel > Hardware_Accelerated_Execution_Manager 目录找到intelhaxm-android.exe这个文件安装定并运行。
  3. 在安装的过程中,你可能会遇到这样的错误提示:”Intel virtualization technology (vt,vt-x) is not enabled”,不用担心,这时你只需要进入BIOS界面在“configurations”中找到“Intel Virtualization Technology”将其设置成Enable即可(关于进入BIOS界面的方式不同的电脑大同小异,我的笔记本是联想笔记本,所以我在开机显示联想logo的一瞬间按下F2即进入了BIOS界面)。
  4. 重新启动Android Studio,然后再次启动AVD即可。
    如果成功了,可能要花几分钟的时候去显示虚拟器的窗口。

你可能感兴趣的:(android,studio,android,studio)