The emulator does not work in Android Studio 2.0

I am using Android Studio 2.0 Stable version. Whenever I press the play button on the device to start, you show how the AVD progress is launched in android studio, and nothing happened after its completion. The application window remains as shown in the screenshot, and the emulator does not start. I can not find a solution to this problem. I already tried many solutions that I found on the Internet, changing the version of the HAXM android SDK, changing the target API. But nothing works.

1

+5
source share
7 answers

Try editing the settings of AVD → Emulated Performance → Graphics. Set Software - GLES 2.0.

+15
source

Installing an Android emulator (labeled in the image) solved my problem. If you are still facing the problem of installing the API and the DHU emulator. But only AE will solve the problem, I think. enter image description here

+2
source

I had exactly the same problem.

Windows 7 Professional SP1. Installed Android Studio 2.0, the new HAXM ver 6.0.1 and updated for all new components, such as SDK 25.1.1 tools.

At startup - the emulator does not display any windows. "emulator.exe" runs in the task manager and consumes 25% of the processor.

All AVDs are deleted, new ones are recreated; Used AVD Manager directly; Used ARM / Atom images (with / without HAXM); I tried AVD with a different level of API - nothing helps.

Going back to Android SDK Tools 24.4.2 helps - I can run the emulator as usual - so this doesn't seem to be the problem with the new HAXM 6.0.1.

After a day's battle, finally got permission:

I removed C: Windows \ System32 \ Wbem from the PATH variable.

+1
source

I had the same problem. I just created an AVD with 768 MB of RAM, and it really worked fine!

+1
source

I have the same problems as you. I upgraded Android Studio to version 2.0, which also updated the Android SDK.

I believe that this problem is more likely related to the Android SDK problem, since I directly use the AVD Manager SDK. I can reproduce this problem.

As another data point, I also modified the virtual device to use only 768 MB of RAM, without any consequences. The task manager shows the emulator using 2 threads and 13% CPU no matter how long I left it, but the window never appears. I tried with and without HAXM. My virtual devices operate at API level 21 (x86_64) and 19 (x86).

I also reinstalled Android Studio and Android SDK without any changes. This could be a configuration issue due to upgrade 2.0 and the SDK, a broken version of the SDK, or something else.

Returning to the Android SDK 24.4.1 allows the emulator to work again , but without the functions of 25.1.1.

0
source
  • open cmd
  • type set and check if you can see C:\Windows\System32\Wbem in the PATH variable

  • go to Control Panel → System (left) → Advanced system settings → (button at the bottom) Environment variables

    Either in user variables (or rather system variables) in the PATH variable, delete

     %SystemRoot%\System32\Wbem (or C:\Windows\System32\Wbem) 
  • restart the studio

0
source

I came across the same problem. I checked the SDK manager, it turned out that the emulator is not installed. After it has been installed, the emulator will start showing

0
source

Source: https://habr.com/ru/post/1246955/


All Articles